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.

static.go 271B

1234567891011121314
  1. // Copyright 2022 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. )
  8. func BuiltinAssets() *assetfs.Layer {
  9. return assetfs.Bindata("builtin(bindata)", Assets)
  10. }