2022-01-26 09:45:51 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-01-26 09:45:51 +00:00
|
|
|
|
|
|
|
//go:build bindata
|
|
|
|
|
|
|
|
package migration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path"
|
2024-07-14 14:54:09 +00:00
|
|
|
|
|
|
|
"github.com/santhosh-tekuri/jsonschema/v6"
|
2022-01-26 09:45:51 +00:00
|
|
|
)
|
|
|
|
|
2024-07-14 14:54:09 +00:00
|
|
|
type SchemaLoader struct{}
|
|
|
|
|
|
|
|
func (*SchemaLoader) Load(filename string) (any, error) {
|
|
|
|
f, err := Assets.Open(path.Base(filename))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
return jsonschema.UnmarshalJSON(f)
|
2022-01-26 09:45:51 +00:00
|
|
|
}
|