(Probably) finished with docs and interfaces.

Starting to build out the actual logic.
This commit is contained in:
Caleb Gardner
2024-05-21 05:50:07 -05:00
parent 4244b6985a
commit e4f8b31e29
9 changed files with 235 additions and 96 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
package darkstorm
type Key struct {
type ApiKey struct {
Perm map[string]bool
ID string
AppID string
Death int
Death int64
}
func (k Key) GetID() string {
func (k ApiKey) GetID() string {
return k.ID
}