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