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