Files
darkstorm-server/internal/darkstorm_backend/key.go
T
Caleb Gardner 4244b6985a Mostly finish docs
Actually start to parse things
2024-05-19 06:47:41 -05:00

13 lines
147 B
Go

package darkstorm
type Key struct {
Perm map[string]bool
ID string
AppID string
Death int
}
func (k Key) GetID() string {
return k.ID
}