forgejo/modules/templates/dynamic.go

16 lines
323 B
Go
Raw Normal View History

// Copyright 2016 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build !bindata
package templates
import (
"forgejo.org/modules/assetfs"
"forgejo.org/modules/setting"
)
func BuiltinAssets() *assetfs.Layer {
return assetfs.Local("builtin(static)", setting.StaticRootPath, "templates")
}