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

10 lines
206 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
}