13 lines
240 B
Go
13 lines
240 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/*.schema.json
|
||
|
var schemaFiles embed.FS
|