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