package db type Machine struct { Id int `json:"id"` Name string `json:"name"` } func (m *Machine) TableName() string { return "machines" }