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