Sqlc generated files modified with template file changes.
This commit is contained in:
@@ -9,8 +9,12 @@ import (
|
||||
)
|
||||
|
||||
type Querier interface {
|
||||
CreateRefreshToken(ctx context.Context, arg CreateRefreshTokenParams) (RefreshToken, error)
|
||||
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
|
||||
DeleteAllUserRefreshTokens(ctx context.Context, userID int64) error
|
||||
DeleteRefreshToken(ctx context.Context, tokenHash string) error
|
||||
DeleteUser(ctx context.Context, arg DeleteUserParams) error
|
||||
GetRefreshToken(ctx context.Context, tokenHash string) (RefreshToken, error)
|
||||
GetUserByEmail(ctx context.Context, dollar_1 string) (User, error)
|
||||
GetUserById(ctx context.Context, id int64) (User, error)
|
||||
ListUsers(ctx context.Context) ([]User, error)
|
||||
|
||||
Reference in New Issue
Block a user