blob: b2321d7eb5042eeeba879b794ffe046b72812122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build bindata
//go:generate go run ../../build/generate-bindata.go ../../options bindata.dat
package options
import (
"sync"
_ "embed"
"code.gitea.io/gitea/modules/assetfs"
)
//go:embed bindata.dat
var bindata []byte
var BuiltinAssets = sync.OnceValue(func() *assetfs.Layer {
return assetfs.Bindata("builtin(bindata)", assetfs.NewEmbeddedFS(bindata))
})
|