13 lines
176 B
Go
13 lines
176 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Service struct {
|
|
gorm.Model
|
|
Name string `gorm:"unique"`
|
|
NodeType string
|
|
Address string
|
|
Port string
|
|
Status string
|
|
}
|