emissary/internal/agent/controller/mdns/spec/init.go
William Petit 242a247222
Some checks failed
arcad/emissary/pipeline/head There was a failure building this commit
feat: add mdns controller
2023-04-04 20:26:19 +02:00

18 lines
260 B
Go

package spec
import (
_ "embed"
"forge.cadoles.com/Cadoles/emissary/internal/spec"
"github.com/pkg/errors"
)
//go:embed schema.json
var schema []byte
func init() {
if err := spec.Register(Name, schema); err != nil {
panic(errors.WithStack(err))
}
}