16 lines
513 B
Go
16 lines
513 B
Go
|
package users
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"git.sch9.ru/new_gate/ms-auth/internal/models"
|
||
|
)
|
||
|
|
||
|
type PgRepository interface {
|
||
|
CreateUser(ctx context.Context, user *models.User) (int32, error)
|
||
|
ReadUserByEmail(ctx context.Context, email string) (*models.User, error)
|
||
|
ReadUserByUsername(ctx context.Context, username string) (*models.User, error)
|
||
|
ReadUserById(ctx context.Context, id int32) (*models.User, error)
|
||
|
UpdateUser(ctx context.Context, user *models.User) error
|
||
|
DeleteUser(ctx context.Context, id int32) error
|
||
|
}
|