repository

package
v0.0.0-...-a051c0a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 2, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type PgClientRepository

type PgClientRepository struct {
	User UserRepository
	// contains filtered or unexported fields
}

type UserRepository

type UserRepository interface {
	GetUserByID(ctx context.Context, userID int64) (model.User, error)
	CreateUser(ctx context.Context, user model.User) error
	CheckUserExists(ctx context.Context, login string) (exists bool, err error)
	GetUserByLogin(ctx context.Context, login string) (user model.User, err error)
	UpdateUserDetails(ctx context.Context, userInfo model.UpdateUserModel) error
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL