dao

package
v0.0.0-...-d125d34 Latest Latest
Warning

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

Go to latest
Published: May 8, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DAO

type DAO interface {
	// Create user
	Create(ctx context.Context, user *models.User) (*models.User, error)
	ListByEmail(ctx context.Context, emails []string) ([]*models.User, error)
	GetByIDs(ctx context.Context, userID []uint) ([]*models.User, error)
	List(ctx context.Context, query *q.Query) (int64, []*models.User, error)
	GetByID(ctx context.Context, id uint) (*models.User, error)
	UpdateByID(ctx context.Context, id uint, newUser *models.User) (*models.User, error)
	GetUserByIDP(ctx context.Context, email string, idp string) (*models.User, error)
	DeleteUser(ctx context.Context, id uint) error
}

func NewDAO

func NewDAO(db *gorm.DB) DAO

NewDAO returns an instance of the default DAO

Jump to

Keyboard shortcuts

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