William Petit fe2ee907f9
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-18 14:03:09 +02:00

26 lines
286 B
Go

package store
import "time"
type (
LayerName Name
LayerType string
)
type LayerHeader struct {
Proxy ProxyName
Name LayerName
Type LayerType
Weight int
Enabled bool
}
type Layer struct {
LayerHeader
CreatedAt time.Time
UpdatedAt time.Time
Options map[string]any
}