Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from ingrammicro/refactor/7-go-modules
Browse files Browse the repository at this point in the history
Replace dep with go modules for dependency manager
  • Loading branch information
pbanos authored Jul 8, 2019
2 parents 1245c43 + 85d3ed1 commit 0964946
Show file tree
Hide file tree
Showing 50 changed files with 86 additions and 175 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ go:
notifications:
email: false

before_script:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure

script:
- go get -v ./...
- ./test.sh
Expand Down
65 changes: 0 additions & 65 deletions Gopkg.lock

This file was deleted.

61 changes: 0 additions & 61 deletions Gopkg.toml

This file was deleted.

2 changes: 1 addition & 1 deletion api/audit/events_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package audit
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/blueprint/attachments_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package blueprint
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/blueprint/bootstrapping_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/blueprint/cookbook_versions_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package blueprint
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/blueprint/scripts_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package blueprint
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/blueprint/templates_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/cloud_providers_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cloud
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/generic_images_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cloud
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/server_arrays_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/server_plan_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cloud
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/servers_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/ssh_profiles_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cloud
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/dispatcher/scripts_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dispatcher
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/firewall/firewall_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/md5"
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/labels/labels_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/network/firewall_profiles_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/network/floating_ips_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package network
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/network/subnets_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package network
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/network/vpcs_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package network
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/network/vpns_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package network
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/polling/polling_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package polling
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/settings/cloud_accounts_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/storage/storage_plans_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package storage
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/storage/volumes_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package storage
import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/wizard/apps_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/wizard/locations_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/wizard/wizard_cloud_providers_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion api/wizard/wizard_server_plans_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/ingrammicro/cio/api/types"
"github.com/ingrammicro/cio/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion bootstrapping/bootstrapping.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"syscall"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/allan-simon/go-singleinstance"
"github.com/codegangsta/cli"
"github.com/ingrammicro/cio/api/blueprint"
Expand Down
Loading

0 comments on commit 0964946

Please sign in to comment.