diff --git a/src/internal/apiservice/printer/printer.go b/src/internal/apiservice/printer/printer.go index 7337f68..f6db7c4 100644 --- a/src/internal/apiservice/printer/printer.go +++ b/src/internal/apiservice/printer/printer.go @@ -6,9 +6,9 @@ import ( "io" "log" "net/http" - "powerswitch/app/process/octoprint" apiservice_data "powerswitch/internal/apiservice/data" apiservice_power "powerswitch/internal/apiservice/power" + "powerswitch/internal/app/process/octoprint" ) type state string diff --git a/src/app/process/octoprint/octoprint.go b/src/internal/app/process/octoprint/octoprint.go similarity index 94% rename from src/app/process/octoprint/octoprint.go rename to src/internal/app/process/octoprint/octoprint.go index 135a758..7fe8d74 100644 --- a/src/app/process/octoprint/octoprint.go +++ b/src/internal/app/process/octoprint/octoprint.go @@ -2,7 +2,7 @@ package octoprint import ( "log" - "powerswitch/app/process" + "powerswitch/internal/app/process" ) const ( diff --git a/src/app/process/process.go b/src/internal/app/process/process.go similarity index 100% rename from src/app/process/process.go rename to src/internal/app/process/process.go