initial structure

This commit is contained in:
arnaucube
2019-06-13 18:54:12 +02:00
parent f823601eed
commit f7a5bbb91e
14 changed files with 456 additions and 0 deletions

8
models/planet.go Normal file
View File

@@ -0,0 +1,8 @@
package models
type Planet struct {
Id string
Size int64 // fields
Name string
OwnerId string
}