import order

This commit is contained in:
rmanach 2025-04-04 12:25:06 +02:00
parent 7681f346bd
commit bcb8c9c313
3 changed files with 6 additions and 3 deletions

View File

@ -6,8 +6,9 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"gitea.thegux.fr/hmdeploy/models"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"gitea.thegux.fr/hmdeploy/models"
) )
var ErrContextDone = errors.New("unable to execute, context done") var ErrContextDone = errors.New("unable to execute, context done")

View File

@ -5,9 +5,10 @@ import (
"fmt" "fmt"
"path/filepath" "path/filepath"
"github.com/rs/zerolog/log"
"gitea.thegux.fr/hmdeploy/connection" "gitea.thegux.fr/hmdeploy/connection"
"gitea.thegux.fr/hmdeploy/models" "gitea.thegux.fr/hmdeploy/models"
"github.com/rs/zerolog/log"
) )
// NginxDeployer handles the deployment of an Nginx configuration. // NginxDeployer handles the deployment of an Nginx configuration.

View File

@ -7,11 +7,12 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/rs/zerolog/log"
"gitea.thegux.fr/hmdeploy/connection" "gitea.thegux.fr/hmdeploy/connection"
"gitea.thegux.fr/hmdeploy/docker" "gitea.thegux.fr/hmdeploy/docker"
"gitea.thegux.fr/hmdeploy/models" "gitea.thegux.fr/hmdeploy/models"
"gitea.thegux.fr/hmdeploy/utils" "gitea.thegux.fr/hmdeploy/utils"
"github.com/rs/zerolog/log"
) )
var ErrSwarmDeployerNoArchive = errors.New("no archive found to be deployed") var ErrSwarmDeployerNoArchive = errors.New("no archive found to be deployed")