8 lines
183 B
Go
8 lines
183 B
Go
// the models package defines the models for the computer parts and resources that gathered
|
|
package models
|
|
|
|
type Device struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|