2022-10-06 06:00:54 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-22 18:12:23 +00:00
|
|
|
|
2021-08-24 16:47:09 +00:00
|
|
|
//go:build bindata
|
|
|
|
|
2016-12-22 18:12:23 +00:00
|
|
|
package options
|
|
|
|
|
|
|
|
import (
|
2023-04-12 10:16:45 +00:00
|
|
|
"code.gitea.io/gitea/modules/assetfs"
|
2016-12-22 18:12:23 +00:00
|
|
|
)
|
|
|
|
|
2023-04-12 10:16:45 +00:00
|
|
|
func BuiltinAssets() *assetfs.Layer {
|
|
|
|
return assetfs.Bindata("builtin(bindata)", Assets)
|
2020-01-30 02:00:27 +00:00
|
|
|
}
|