bouncer/internal/store/layer.go

26 lines
284 B
Go
Raw Normal View History

2023-04-24 20:52:12 +02:00
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
}