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

package datastore
import "github.com/josephbmanley/OpenSkins-Common/datatypes"
type Userstore interface {
Initialize() error
GetUser(uid string) (*datatypes.User, error)
SetUser(*datatypes.User) error
}