Format some file using gofmt

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2015-09-15 22:32:09 +02:00
parent 1cc294872b
commit fd835e1fcd
5 changed files with 26 additions and 26 deletions

View file

@ -35,16 +35,16 @@ type Server struct {
}
type Route struct {
Rule string
Value string
Rule string
Value string
}
type Frontend struct {
Backend string
Routes map[string]Route
Routes map[string]Route
}
type Configuration struct {
Backends map[string]Backend
Backends map[string]Backend
Frontends map[string]Frontend
}