1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/go/pkg/config/hook.go

10 lines
146 B
Go

package config
type Hook struct {
Type string `json:"type"`
Priority int `json:"priority,omitempty"`
}
type PrintHook struct {
Hook
}