10 lines
208 B
Go
10 lines
208 B
Go
// Package specs exposes the checked-in machine-readable contracts.
|
|
package specs
|
|
|
|
import "embed"
|
|
|
|
// Files contains the versioned JSON Schemas used at runtime.
|
|
//
|
|
//go:embed *.schema.json
|
|
var Files embed.FS
|