users/store/store.go

11 lines
221 B
Go
Raw Normal View History

2023-10-19 21:15:55 +00:00
package store
import "git.t-juice.club/microfilm/users"
type UserStore interface {
AddUser(users.User) error
DeleteUser(id string) error
UpdateUser(users.User) error
2023-10-21 00:15:19 +00:00
GetUser(identifier string) (users.User, error)
2023-10-19 21:15:55 +00:00
}