Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

static.go 539B

12345678910111213141516171819
  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. "gitea.com/macaron/macaron"
  8. )
  9. // Static implements the macaron static handler for serving assets.
  10. func Static(opts *Options) macaron.Handler {
  11. opts.FileSystem = Assets
  12. // we don't need to pass the directory, because the directory var is only
  13. // used when in the options there is no FileSystem.
  14. return opts.staticHandler("")
  15. }