e4f8b31e29
Starting to build out the actual logic.
13 lines
155 B
Go
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
|
|
}
|