Add fiber http backend

This commit is contained in:
2024-10-27 23:15:38 +01:00
parent a74f722c58
commit 7903bb7830
5 changed files with 92 additions and 22 deletions

View File

@@ -8,9 +8,9 @@ type (
Name string `json:"name"`
}
Player struct {
ID int64
Name string `json:"name"`
Guild Guild `json:"guild"`
ID int64
Name string `json:"name"`
Guild Guild `json:"guild"`
}
Association struct {
ID int64
@@ -36,4 +36,10 @@ type NoteData struct {
type NoteAssociationData struct {
Player string
Note string
}
}
type Response struct {
Success bool
Message string
Data interface{}
}