aboutsummaryrefslogtreecommitdiffstats
path: root/modules/public/public.go
blob: 261ed88874c0857d3f7ae201f76ccabe9da133a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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

//go:generate go-bindata -tags "bindata" -ignore "\\.go|\\.less" -pkg "public" -o "bindata.go" ../../public/...
//go:generate go fmt bindata.go

// Options represents the available options to configure the macaron handler.
type Options struct {
	Directory   string
	SkipLogging bool
}