From 061bb112d50812c797c7194858128bf50549bd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=A4felfinger?= Date: Thu, 21 Mar 2019 22:31:16 +0100 Subject: [PATCH] formatting --- internal/app/app.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/app/app.go b/internal/app/app.go index 9279008..169a629 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -8,12 +8,12 @@ import ( ) var ( - imagesRootPath = flag.String("imagesRootPath", "", "This is the images root path that should be mirrored to piwigo.") - sqliteDb = flag.String("sqliteDb", "./localstate.db", "The connection string to the sql lite database file.") - noUpload = flag.Bool("noUpload", false, "If set to true, the metadata gets prepared but the upload is not called and the application is exited with code 90") - piwigoUrl = flag.String("piwigoUrl", "", "The root url without tailing slash to your piwigo installation.") - piwigoUser = flag.String("piwigoUser", "", "The username to use during sync.") - piwigoPassword = flag.String("piwigoPassword", "", "This is password to the given username.") + imagesRootPath = flag.String("imagesRootPath", "", "This is the images root path that should be mirrored to piwigo.") + sqliteDb = flag.String("sqliteDb", "./localstate.db", "The connection string to the sql lite database file.") + noUpload = flag.Bool("noUpload", false, "If set to true, the metadata gets prepared but the upload is not called and the application is exited with code 90") + piwigoUrl = flag.String("piwigoUrl", "", "The root url without tailing slash to your piwigo installation.") + piwigoUser = flag.String("piwigoUser", "", "The username to use during sync.") + piwigoPassword = flag.String("piwigoPassword", "", "This is password to the given username.") ) func Run() {