16 lines
257 B
Go
Executable File
16 lines
257 B
Go
Executable File
// 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))
|
|
}
|