diff --git a/cmd/DirectoriesToAlbums/main.go b/cmd/PiwigoDirectoryUploader/main.go similarity index 89% rename from cmd/DirectoriesToAlbums/main.go rename to cmd/PiwigoDirectoryUploader/main.go index 3a5aed4..f447f78 100644 --- a/cmd/DirectoriesToAlbums/main.go +++ b/cmd/PiwigoDirectoryUploader/main.go @@ -2,7 +2,7 @@ package main import ( "flag" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/app" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/app" "github.com/sirupsen/logrus" "github.com/vharitonsky/iniflags" "os" diff --git a/internal/app/app.go b/internal/app/app.go index 6e8d9fd..c60e3ba 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -4,9 +4,9 @@ import ( "errors" "flag" "fmt" - "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" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo/authentication" "github.com/sirupsen/logrus" "os" ) diff --git a/internal/app/category.go b/internal/app/category.go index 3d831fb..12c008e 100644 --- a/internal/app/category.go +++ b/internal/app/category.go @@ -3,8 +3,8 @@ package app import ( "errors" "fmt" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/category" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo/category" "github.com/sirupsen/logrus" "path/filepath" "sort" diff --git a/internal/app/images.go b/internal/app/images.go index 24c5da3..a612410 100644 --- a/internal/app/images.go +++ b/internal/app/images.go @@ -1,9 +1,9 @@ package app import ( - "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" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/localFileStructure" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo/category" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo/picture" "github.com/sirupsen/logrus" "sort" ) diff --git a/internal/app/types.go b/internal/app/types.go index 8088052..1817fad 100644 --- a/internal/app/types.go +++ b/internal/app/types.go @@ -1,7 +1,7 @@ package app import ( - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" ) type appContext struct { diff --git a/internal/pkg/piwigo/authentication/authentication.go b/internal/pkg/piwigo/authentication/authentication.go index 91c2c16..9479d7a 100644 --- a/internal/pkg/piwigo/authentication/authentication.go +++ b/internal/pkg/piwigo/authentication/authentication.go @@ -4,7 +4,7 @@ import ( "encoding/json" "errors" "fmt" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" "github.com/sirupsen/logrus" "net/url" "strings" diff --git a/internal/pkg/piwigo/category/create.go b/internal/pkg/piwigo/category/create.go index 1906b2a..8e7bfd6 100644 --- a/internal/pkg/piwigo/category/create.go +++ b/internal/pkg/piwigo/category/create.go @@ -4,7 +4,7 @@ import ( "encoding/json" "errors" "fmt" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" "github.com/sirupsen/logrus" "net/url" ) diff --git a/internal/pkg/piwigo/category/query.go b/internal/pkg/piwigo/category/query.go index 808ff77..695b64a 100644 --- a/internal/pkg/piwigo/category/query.go +++ b/internal/pkg/piwigo/category/query.go @@ -4,7 +4,7 @@ import ( "encoding/json" "errors" "fmt" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" "github.com/sirupsen/logrus" "net/url" "os" diff --git a/internal/pkg/piwigo/picture/query.go b/internal/pkg/piwigo/picture/query.go index 25ff029..330b4a6 100644 --- a/internal/pkg/piwigo/picture/query.go +++ b/internal/pkg/piwigo/picture/query.go @@ -2,7 +2,7 @@ package picture import ( "encoding/json" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" "github.com/sirupsen/logrus" "net/url" "strings" diff --git a/internal/pkg/piwigo/picture/upload.go b/internal/pkg/piwigo/picture/upload.go index 3afdaec..0517a55 100644 --- a/internal/pkg/piwigo/picture/upload.go +++ b/internal/pkg/piwigo/picture/upload.go @@ -6,7 +6,7 @@ import ( "encoding/json" "errors" "fmt" - "git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo" + "git.haefelfinger.net/piwigo/PiwigoDirectoryUploader/internal/pkg/piwigo" "github.com/sirupsen/logrus" "io" "net/url"