mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 07:33:21 +00:00
Optimize Config struct (maligned)
This commit is contained in:
parent
9b89df0842
commit
0f9ea68a2e
1 changed files with 2 additions and 2 deletions
4
mux.go
4
mux.go
|
@ -16,12 +16,12 @@ import (
|
||||||
var Config = struct {
|
var Config = struct {
|
||||||
Path string
|
Path string
|
||||||
Listen string
|
Listen string
|
||||||
TLS bool
|
|
||||||
Log string
|
Log string
|
||||||
CPUProfile string
|
CPUProfile string
|
||||||
Debug bool
|
TLS bool
|
||||||
AppendOnly bool
|
AppendOnly bool
|
||||||
Prometheus bool
|
Prometheus bool
|
||||||
|
Debug bool
|
||||||
}{
|
}{
|
||||||
Path: "/tmp/restic",
|
Path: "/tmp/restic",
|
||||||
Listen: ":8000",
|
Listen: ":8000",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue