Compare commits

...

1 Commits

Author SHA1 Message Date
Chaim Lev-Ari
375bb8e2c8 fix(main): remove double import of logrus
Some checks are pending
Test Frontend / build (push) Waiting to run
2022-01-27 14:40:58 +02:00

View File

@@ -4,12 +4,13 @@ import (
"context"
"crypto/sha256"
"fmt"
"github.com/sirupsen/logrus"
"os"
"path"
"strconv"
"strings"
"github.com/sirupsen/logrus"
"github.com/portainer/libhelm"
portainer "github.com/portainer/portainer/api"
"github.com/portainer/portainer/api/apikey"
@@ -40,7 +41,6 @@ import (
"github.com/portainer/portainer/api/oauth"
"github.com/portainer/portainer/api/scheduler"
"github.com/portainer/portainer/api/stacks"
"github.com/sirupsen/logrus"
)
func initCLI() *portainer.CLIFlags {