From 930d27bff7487a5cc1e8e29d695c5b4f5ef06af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=A4felfinger?= Date: Fri, 1 Mar 2019 21:36:16 +0100 Subject: [PATCH] fixed namespace and clone target --- cmd/DirectoriesToAlbums/main.go | 2 +- internal/app/app.go | 6 +++--- internal/app/category.go | 4 ++-- internal/app/images.go | 6 +++--- internal/app/types.go | 2 +- internal/pkg/piwigo/authentication/authentication.go | 2 +- internal/pkg/piwigo/category/create.go | 2 +- internal/pkg/piwigo/category/query.go | 2 +- internal/pkg/piwigo/picture/query.go | 2 +- internal/pkg/piwigo/picture/upload.go | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cmd/DirectoriesToAlbums/main.go b/cmd/DirectoriesToAlbums/main.go index df173ac..c1c760c 100644 --- a/cmd/DirectoriesToAlbums/main.go +++ b/cmd/DirectoriesToAlbums/main.go @@ -3,7 +3,7 @@ package main import ( "github.com/sirupsen/logrus" "github.com/vharitonsky/iniflags" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/app" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/app" "os" ) diff --git a/internal/app/app.go b/internal/app/app.go index bef0f95..6adb23e 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -5,9 +5,9 @@ import ( "flag" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/authentication" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/authentication" "os" ) diff --git a/internal/app/category.go b/internal/app/category.go index 1e6be7c..3f90a34 100644 --- a/internal/app/category.go +++ b/internal/app/category.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/category" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/category" "path/filepath" "sort" ) diff --git a/internal/app/images.go b/internal/app/images.go index a20f22c..d55cbda 100644 --- a/internal/app/images.go +++ b/internal/app/images.go @@ -3,9 +3,9 @@ package app import ( "errors" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/category" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/picture" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/category" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/picture" ) func synchronizeImages(context *appContext, fileSystem map[string]*localFileStructure.FilesystemNode, existingCategories map[string]*category.PiwigoCategory) error { diff --git a/internal/app/types.go b/internal/app/types.go index 25dc05c..8088052 100644 --- a/internal/app/types.go +++ b/internal/app/types.go @@ -1,7 +1,7 @@ package app import ( - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" ) type appContext struct { diff --git a/internal/pkg/piwigo/authentication/authentication.go b/internal/pkg/piwigo/authentication/authentication.go index 2a98c0c..e0f1dbc 100644 --- a/internal/pkg/piwigo/authentication/authentication.go +++ b/internal/pkg/piwigo/authentication/authentication.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" "net/url" "strings" ) diff --git a/internal/pkg/piwigo/category/create.go b/internal/pkg/piwigo/category/create.go index 59febf4..d68b9cc 100644 --- a/internal/pkg/piwigo/category/create.go +++ b/internal/pkg/piwigo/category/create.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" "net/url" ) diff --git a/internal/pkg/piwigo/category/query.go b/internal/pkg/piwigo/category/query.go index 192441e..93d1fca 100644 --- a/internal/pkg/piwigo/category/query.go +++ b/internal/pkg/piwigo/category/query.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" "net/url" "os" ) diff --git a/internal/pkg/piwigo/picture/query.go b/internal/pkg/piwigo/picture/query.go index caecee1..a301701 100644 --- a/internal/pkg/piwigo/picture/query.go +++ b/internal/pkg/piwigo/picture/query.go @@ -3,7 +3,7 @@ package picture import ( "encoding/json" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" "net/url" "strings" ) diff --git a/internal/pkg/piwigo/picture/upload.go b/internal/pkg/piwigo/picture/upload.go index 0b37f3e..5e3d4b7 100644 --- a/internal/pkg/piwigo/picture/upload.go +++ b/internal/pkg/piwigo/picture/upload.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" "github.com/sirupsen/logrus" - "haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" "net/url" "strconv" )