This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
openskins-common/datastore/userstore.go

10 lines
208 B
Go
Raw Normal View History

2020-12-26 03:22:45 +01:00
package datastore
import "github.com/josephbmanley/OpenSkins-Common/datatypes"
type Userstore interface {
Initialize() error
2020-12-27 06:16:24 +01:00
GetUser(uid string) (*datatypes.User, error)
2021-01-30 00:55:49 +01:00
SetUser(*datatypes.User) error
2020-12-26 03:22:45 +01:00
}