Files
openpdu/source/boards.go
2019-08-31 21:34:46 +02:00

9 lines
159 B
Go

package main
// Board definition
type Board struct {
ID string `mapstructure:"id"`
Name string `mapstructure:"name"`
Type string `mapstructure:"type"`
}