You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dynamic.go 335B

123456789101112131415
  1. // Copyright 2016 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. //go:build !bindata
  4. package options
  5. import (
  6. "code.gitea.io/gitea/modules/assetfs"
  7. "code.gitea.io/gitea/modules/setting"
  8. )
  9. func BuiltinAssets() *assetfs.Layer {
  10. return assetfs.Local("builtin(static)", setting.StaticRootPath, "options")
  11. }