2016-11-29 17:26:36 +01:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-29 17:26:36 +01:00
|
|
|
|
2021-08-24 18:47:09 +02:00
|
|
|
//go:build !bindata
|
|
|
|
|
2016-11-29 17:26:36 +01:00
|
|
|
package public
|
|
|
|
|
2020-12-24 05:25:17 +01:00
|
|
|
import (
|
2023-04-12 12:16:45 +02:00
|
|
|
"code.gitea.io/gitea/modules/assetfs"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-12-24 05:25:17 +01:00
|
|
|
)
|
2016-11-29 17:26:36 +01:00
|
|
|
|
2023-04-12 12:16:45 +02:00
|
|
|
func BuiltinAssets() *assetfs.Layer {
|
|
|
|
return assetfs.Local("builtin(static)", setting.StaticRootPath, "public")
|
2020-12-24 05:25:17 +01:00
|
|
|
}
|