flotte/pkg/models/service.go

13 lines
157 B
Go

package models
import "gorm.io/gorm"
type Service struct {
gorm.Model
Name string
NodeType string
Address string
Port int
Status string
}