aboutsummaryrefslogtreecommitdiffstats
path: root/modules/migration/schemas_static.go
blob: 8a0c340a65583ec436e04f0c038885eb47292db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

//go:build bindata

package migration

import (
	"io"
	"path"
)

func openSchema(filename string) (io.ReadCloser, error) {
	return Assets.Open(path.Base(filename))
}