I'm stuck

This commit is contained in:
2019-08-31 21:34:46 +02:00
parent 9b9a94a83b
commit 56ad55b967
6 changed files with 187 additions and 24 deletions

8
source/boards.go Normal file
View File

@@ -0,0 +1,8 @@
package main
// Board definition
type Board struct {
ID string `mapstructure:"id"`
Name string `mapstructure:"name"`
Type string `mapstructure:"type"`
}