moved api to golang and dashboard do nodejs

This commit is contained in:
RyanBakkes
2022-08-28 10:39:38 +02:00
parent 545cf0cf50
commit b7dcb1afe2
15 changed files with 479 additions and 305 deletions

View File

@@ -0,0 +1,13 @@
package models
type Game struct{
Name string `json:"name" bson:"name"`
}
type Cards struct{
Name string `json:"name" bson:"name"`
}
type Info struct{
Name string `json:"name" bson:"name"`
}