Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthenticationRepository ¶
type AuthenticationRepository interface {
CreateAuthentication(ctx context.Context, arg db.CreateAuthenticationParams) (db.Authentication, error)
DeleteAuthentication(ctx context.Context, id int64) error
GetAuthenticationByChallenge(ctx context.Context, challenge string) (db.Authentication, error)
GetAuthenticationByCode(ctx context.Context, code string) (db.Authentication, error)
UpdateAuthentication(ctx context.Context, arg db.UpdateAuthenticationParams) (db.Authentication, error)
}
func NewRepository ¶
func NewRepository(repositoryService *db.RepositoryService) AuthenticationRepository
Click to show internal directories.
Click to hide internal directories.