2022-01-26 10:45:51 +01:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-01-26 10:45:51 +01:00
|
|
|
|
|
|
|
//go:build bindata
|
|
|
|
|
|
|
|
package migration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path"
|
2024-07-14 16:54:09 +02:00
|
|
|
|
|
|
|
"github.com/santhosh-tekuri/jsonschema/v6"
|
2022-01-26 10:45:51 +01:00
|
|
|
)
|
|
|
|
|
2024-07-14 16:54:09 +02: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 10:45:51 +01:00
|
|
|
}
|