Add todo schema

This commit is contained in:
Achim Rohn
2025-09-18 09:59:40 +02:00
parent b788fb4898
commit 1c42c7dd7a
17 changed files with 2832 additions and 2 deletions
+3
View File
@@ -14,6 +14,8 @@ type Tx struct {
config
// GoogleAuth is the client for interacting with the GoogleAuth builders.
GoogleAuth *GoogleAuthClient
// Todo is the client for interacting with the Todo builders.
Todo *TodoClient
// User is the client for interacting with the User builders.
User *UserClient
@@ -148,6 +150,7 @@ func (tx *Tx) Client() *Client {
func (tx *Tx) init() {
tx.GoogleAuth = NewGoogleAuthClient(tx.config)
tx.Todo = NewTodoClient(tx.config)
tx.User = NewUserClient(tx.config)
}