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