blob: 72b28e990e777535c731a4e18de726d4a5f5a240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build bindata
package options
import (
"code.gitea.io/gitea/modules/assetfs"
)
func BuiltinAssets() *assetfs.Layer {
return assetfs.Bindata("builtin(bindata)", Assets)
}
|