Initial commit

This commit is contained in:
MaxJa4
2024-01-14 22:06:53 +01:00
commit fe92068ad3
30 changed files with 1067 additions and 0 deletions

8
models/clan.go Normal file
View File

@@ -0,0 +1,8 @@
package models
type Clan struct {
ID uint `json:"id" gorm:"primary_key"`
Name string `json:"name"`
Tag string `json:"tag"`
KeepUpdated bool `json:"keep_updated"`
}