hugo-cms/models/publish.go

23 lines
320 B
Go
Raw Normal View History

2025-01-27 04:45:53 +00:00
package models
type TargetRole string
const (
TargetRoleProduction TargetRole = "production"
)
type TargetType string
const (
TargetTypeNetlify TargetType = "netlify"
)
type PublishTarget struct {
ID int64
SiteID int64
Role TargetRole
Type TargetType
URL string
TargetRef string
}