Add todo schema
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user