Files
darkstorm-server/internal/darkstorm_backend/key.go
T
Caleb Gardner e4f8b31e29 (Probably) finished with docs and interfaces.
Starting to build out the actual logic.
2024-05-21 05:50:07 -05:00

13 lines
155 B
Go

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