Set up reflex for make watch

This commit is contained in:
Benedikt Kulmann
2020-07-01 11:05:33 +02:00
parent 28e72bc5ad
commit f883c5bd0b
8 changed files with 57 additions and 46 deletions
+6
View File
@@ -43,6 +43,11 @@ type Server struct {
AccountsDataPath string
}
// Asset defines the available asset configuration.
type Asset struct {
Path string
}
// Log defines the available logging configuration.
type Log struct {
Level string
@@ -56,6 +61,7 @@ type Config struct {
HTTP HTTP
GRPC GRPC
Server Server
Asset Asset
Log Log
}