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.

26 lines
709 B

  1. // +build bindata
  2. // Copyright 2016 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package public
  6. import (
  7. "github.com/go-macaron/bindata"
  8. "gopkg.in/macaron.v1"
  9. )
  10. // Static implements the macaron static handler for serving assets.
  11. func Static(opts *Options) macaron.Handler {
  12. opts.FileSystem = bindata.Static(bindata.Options{
  13. Asset: Asset,
  14. AssetDir: AssetDir,
  15. AssetInfo: AssetInfo,
  16. AssetNames: AssetNames,
  17. Prefix: "",
  18. })
  19. // we don't need to pass the directory, because the directory var is only
  20. // used when in the options there is no FileSystem.
  21. return opts.staticHandler("")
  22. }