package models
type Server struct {
Id uint `gorm:"primary key" json:"id"`
Name string `gorm:"size:40;not null" json:"name"`
IP string `gorm:"size:40;not null" json:"ip"`
}