23 lines
320 B
Go
23 lines
320 B
Go
|
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
|
||
|
}
|