diff options
-rw-r--r-- | main.go | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -21,15 +21,18 @@ import ( func main() { flag.Parse() - if config.Path != "" { - config.Read() - } - if printVersion { fmt.Println(gitDescribe) os.Exit(0) } + log.Println("Ceres recipe server started") + defer log.Println("Ceres recipe server stopped") + + if config.Path != "" { + config.Read() + } + storage := model.Storage{Path: config.StorageFilePath} if !storage.Exists() { storage.Create() |