14 lines
280 B
Go
14 lines
280 B
Go
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
package folio
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
var schemaFilesUri URI = "file://folio/schemas/*.schema.json"
|
|
|
|
//go:embed schemas/config/*.schema.json
|
|
//go:embed schemas/*.schema.json
|
|
var schemaFiles embed.FS
|