bouncer/internal/store/layer.go

35 lines
605 B
Go
Raw Permalink Normal View History

2023-04-24 20:52:12 +02:00
package store
2024-05-17 15:44:28 +02:00
import (
"encoding/json"
"time"
)
2023-04-24 20:52:12 +02:00
type (
LayerName Name
LayerType string
)
type LayerHeader struct {
Proxy ProxyName `json:"proxy"`
Name LayerName `json:"name"`
Revision int `json:"revision"`
Type LayerType `json:"type"`
2023-04-24 20:52:12 +02:00
Weight int `json:"weight"`
Enabled bool `json:"enabled"`
}
type Layer struct {
LayerHeader
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
Options LayerOptions `json:"options"`
}
2024-05-17 15:44:28 +02:00
type LayerDefinition struct {
Type LayerType `json:"type"`
Options json.RawMessage `json:"options"`
}