storage

package
v0.0.0-...-b1f0215 Latest Latest
Warning

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

Go to latest
Published: Mar 13, 2024 License: Unlicense Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountStorage

type AccountStorage interface {
	CreateAccount(account model.Account) error
	GetAccountByID(id string) (model.Account, error)
	GetAccountByEmail(email string) (model.Account, error)
	GetAccountByUsername(username string) (model.Account, error)
	GetAccountByUsernameOrEmail(usernameOrEmail string) (model.Account, error)
	GetAllAccounts() ([]model.Account, error)
	UpdateAccount(account model.Account) error
	DeleteAccount(id string) error
}

Jump to

Keyboard shortcuts

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