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 458B

123456789101112131415161718192021
  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. "gopkg.in/macaron.v1"
  8. )
  9. // Static implements the macaron static handler for serving assets.
  10. func Static(opts *Options) macaron.Handler {
  11. return macaron.Static(
  12. opts.Directory,
  13. macaron.StaticOptions{
  14. SkipLogging: opts.SkipLogging,
  15. },
  16. )
  17. }