William Petit b0f3cba188
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-15 20:01:05 +02:00

26 lines
284 B
Go

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