2016-11-29 09:26:36 -07:00
|
|
|
// +build !bindata
|
|
|
|
|
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package public
|
|
|
|
|
|
|
|
import (
|
2019-08-23 10:40:30 -06:00
|
|
|
"gitea.com/macaron/macaron"
|
2016-11-29 09:26:36 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// Static implements the macaron static handler for serving assets.
|
|
|
|
func Static(opts *Options) macaron.Handler {
|
2018-02-03 15:37:05 -07:00
|
|
|
return opts.staticHandler(opts.Directory)
|
2016-11-29 09:26:36 -07:00
|
|
|
}
|