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