18 lines
260 B
Go
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))
|
||
|
}
|
||
|
}
|