Skip to content

Commit

Permalink
Updated imports after repo move
Browse files Browse the repository at this point in the history
  • Loading branch information
wizedkyle committed Sep 3, 2021
1 parent 0969708 commit 93a4463
Show file tree
Hide file tree
Showing 221 changed files with 711 additions and 717 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/sumocli-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ jobs:
$build = $Env:GITHUB_RUN_NUMBER
$time = Get-Date
go build -ldflags `
"-X 'github.com/wizedkyle/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/wizedkyle/sumocli/internal/build.Build=$build' `
-X 'github.com/wizedkyle/sumocli/internal/build.Date=$time'" `
"-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Build=$build' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Date=$time'" `
./cmd/sumocli
- name: Signing Executable
shell: pwsh
run: |
azuresigntool sign --description-url "https://github.com/wizedkyle/sumocli" --file-digest sha256 `
azuresigntool sign --description-url "https://github.com/SumoLogic-Incubator/sumocli" --file-digest sha256 `
--azure-key-vault-url ${{ secrets.AZURE_KEY_VAULT_URL }} `
--azure-key-vault-client-id ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }} `
--azure-key-vault-client-secret ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} `
Expand Down Expand Up @@ -115,9 +115,9 @@ jobs:
$build = $Env:GITHUB_RUN_NUMBER
$time = Get-Date
go build -ldflags `
"-X 'github.com/wizedkyle/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/wizedkyle/sumocli/internal/build.Build=$build' `
-X 'github.com/wizedkyle/sumocli/internal/build.Date=$time'" `
"-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Build=$build' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Date=$time'" `
./cmd/sumocli
- name: Zip Releases
run: |
Expand Down Expand Up @@ -161,9 +161,9 @@ jobs:
$build = $Env:GITHUB_RUN_NUMBER
$time = Get-Date
go build -ldflags `
"-X 'github.com/wizedkyle/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/wizedkyle/sumocli/internal/build.Build=$build' `
-X 'github.com/wizedkyle/sumocli/internal/build.Date=$time'" `
"-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Version=${{ env.TAG }}' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Build=$build' `
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Date=$time'" `
./cmd/sumocli
env:
GOOS: darwin
Expand Down Expand Up @@ -236,9 +236,9 @@ jobs:
run: |
time=$(date)
go build -ldflags \
"-X 'github.com/wizedkyle/sumocli/internal/build.Version=${{ env.TAG }}' \
-X 'github.com/wizedkyle/sumocli/internal/build.Build=$GITHUB_RUN_NUMBER' \
-X 'github.com/wizedkyle/sumocli/internal/build.Date=$time'" \
"-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Version=${{ env.TAG }}' \
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Build=$GITHUB_RUN_NUMBER' \
-X 'github.com/SumoLogic-Incubator/sumocli/internal/build.Date=$time'" \
./cmd/sumocli
env:
GOOS: darwin
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ LABEL maintainer="Kyle Jackson <[email protected]>"

ENV DEV=true

WORKDIR $GOPATH/src/github.com/wizedkyle/sumocli
WORKDIR $GOPATH/src/github.com/SumoLogic-Incubator/sumocli
COPY . .
RUN chmod +x ./scripts/build.sh
RUN ./scripts/build.sh
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ Download the binary for your platform from the Releases page.

### Docker

Each version of Sumocli is published on [Docker Hub](https://hub.docker.com/r/wizedkyle/sumocli).
Each version of Sumocli is published on [Docker Hub](https://hub.docker.com/r/SumoLogic-Incubator/sumocli).

Pull the latest image:

`docker pull wizedkyle/sumocli:latest`
`docker pull SumoLogic-Incubator/sumocli:latest`

Pull a specific version image:

`docker pull wizedkyle/sumocli:v0.11.0`
`docker pull SumoLogic-Incubator/sumocli:v0.11.0`

### Build Yourself
You can build the sumocli application for your platform by performing the following steps:

Clone the sumocli repo

`git clone https://github.com/wizedkyle/sumocli`
`git clone https://github.com/SumoLogic-Incubator/sumocli`

The repo is using Go modules so you can run go build:

Expand Down
4 changes: 2 additions & 2 deletions cmd/sumocli/main.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package main

import (
"github.com/wizedkyle/sumocli/pkg/cmd/root"
"github.com/SumoLogic-Incubator/sumocli/pkg/cmd/root"
)

func main() {
rootCmd := root.NewCmdRoot()
rootCmd.Execute()
}
}
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package config

import (
"github.com/wizedkyle/sumocli/internal/authentication"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
"github.com/SumoLogic-Incubator/sumocli/internal/authentication"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"net/http"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/wizedkyle/sumocli
module github.com/SumoLogic-Incubator/sumocli

go 1.15

Expand All @@ -9,6 +9,7 @@ require (
github.com/Azure/go-autorest/autorest/azure/auth v0.5.5
github.com/Azure/go-autorest/autorest/to v0.4.0
github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect
github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip v0.10.0
github.com/antihax/optional v1.0.0
github.com/aws/aws-sdk-go-v2/config v1.3.0
github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.3.1
Expand All @@ -24,7 +25,6 @@ require (
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.6.1 // indirect
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.8.1-0.20210902095618-f1717b030ad5
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
golang.org/x/text v0.3.5 // indirect
Expand Down
10 changes: 2 additions & 8 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip v0.10.0 h1:mTDRnpNTWDpwR78bUA24iFS/MvFYdqyUN1sjYozP01g=
github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip v0.10.0/go.mod h1:7pWkiApE2iO78lfxskkgc2Pl+1182LcFkbfvgdVgtrM=
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/antihax/optional v1.0.0 h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg=
Expand Down Expand Up @@ -271,14 +273,6 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.6.1-0.20210825094727-8109f4536350 h1:NU8c26arg1JL4m3j2dzDIWG2x5I4tHnN25CY3q331IU=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.6.1-0.20210825094727-8109f4536350/go.mod h1:vOQqk5F8YEKsMREZsbWKdHAYcrYJsPOkAdhIi4hV0a0=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.6.1-0.20210829120411-11bcf861ac71 h1:BD0bQb6oYPTJ2RlsTbZI00r0yvGrIwYGTsrr/yCvu4s=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.6.1-0.20210829120411-11bcf861ac71/go.mod h1:vOQqk5F8YEKsMREZsbWKdHAYcrYJsPOkAdhIi4hV0a0=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.8.0 h1:ZYpZ/cH0U/IIm/5YHoostbYAw5Ua0NxwEdUrqzLmByM=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.8.0/go.mod h1:vOQqk5F8YEKsMREZsbWKdHAYcrYJsPOkAdhIi4hV0a0=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.8.1-0.20210902095618-f1717b030ad5 h1:r8xTM8ki9U3gOkkBYTRRoGb6GFwPZ8oJwIA8qAOxOTY=
github.com/wizedkyle/sumologic-go-sdk/service/cip v0.8.1-0.20210902095618-f1717b030ad5/go.mod h1:vOQqk5F8YEKsMREZsbWKdHAYcrYJsPOkAdhIi4hV0a0=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
Expand Down
2 changes: 1 addition & 1 deletion internal/authentication/authentication.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package authentication
import (
"encoding/base64"
"fmt"
"github.com/SumoLogic-Incubator/sumocli/internal/encryption"
"github.com/spf13/viper"
"github.com/wizedkyle/sumocli/internal/encryption"
"os"
"path/filepath"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/authorizers/authorizers.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/adal"
"github.com/Azure/go-autorest/autorest/azure/auth"
"github.com/wizedkyle/sumocli/internal/config"
"github.com/SumoLogic-Incubator/sumocli/internal/config"
)

type OAuthGrantType int
Expand Down
4 changes: 2 additions & 2 deletions internal/clients/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/Azure/azure-sdk-for-go/services/eventhub/mgmt/2017-04-01/eventhub"
"github.com/Azure/azure-sdk-for-go/services/servicebus/mgmt/2017-04-01/servicebus"
"github.com/Azure/azure-sdk-for-go/services/web/mgmt/2020-06-01/web"
"github.com/wizedkyle/sumocli/internal/authorizers"
"github.com/wizedkyle/sumocli/internal/config"
"github.com/SumoLogic-Incubator/sumocli/internal/authorizers"
"github.com/SumoLogic-Incubator/sumocli/internal/config"
)

func GetAppServiceClient() web.AppsClient {
Expand Down
4 changes: 2 additions & 2 deletions internal/cloud/aws.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cloud

import (
"github.com/wizedkyle/sumocli/api"
"github.com/wizedkyle/sumocli/pkg/logging"
"github.com/SumoLogic-Incubator/sumocli/api"
"github.com/SumoLogic-Incubator/sumocli/pkg/logging"
)

func SetAWSAuthentication(awsId string, awsKey string, roleArn string) api.ThirdPartyReferenceResourcesAuthentication {
Expand Down
4 changes: 2 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package config
import (
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/to"
"github.com/SumoLogic-Incubator/sumocli/internal/build"
"github.com/SumoLogic-Incubator/sumocli/pkg/logging"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/internal/build"
"github.com/wizedkyle/sumocli/pkg/logging"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion internal/encryption/encryption.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"crypto/sha256"
"encoding/hex"
"fmt"
"github.com/wizedkyle/sumocli/pkg/logging"
"github.com/SumoLogic-Incubator/sumocli/pkg/logging"
"io"
)

Expand Down
12 changes: 6 additions & 6 deletions pkg/cmd/access-keys/access-keys.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package access_keys

import (
cmdAccessKeysCreate "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/access-keys/create"
cmdAccessKeysDelete "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/access-keys/delete"
cmdAccessKeysListAll "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/access-keys/list_all"
cmdAccessKeysListPersonal "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/access-keys/list_personal"
cmdAccessKeysUpdate "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/access-keys/update"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
cmdAccessKeysCreate "github.com/wizedkyle/sumocli/pkg/cmd/access-keys/create"
cmdAccessKeysDelete "github.com/wizedkyle/sumocli/pkg/cmd/access-keys/delete"
cmdAccessKeysListAll "github.com/wizedkyle/sumocli/pkg/cmd/access-keys/list_all"
cmdAccessKeysListPersonal "github.com/wizedkyle/sumocli/pkg/cmd/access-keys/list_personal"
cmdAccessKeysUpdate "github.com/wizedkyle/sumocli/pkg/cmd/access-keys/update"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccessKeys(client *cip.APIClient) *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions pkg/cmd/access-keys/create/create.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package create

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip/types"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
"github.com/wizedkyle/sumologic-go-sdk/service/cip/types"
)

func NewCmdAccessKeysCreate(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/access-keys/delete/delete.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package delete

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccessKeysDelete(client *cip.APIClient) *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions pkg/cmd/access-keys/list_all/list_all.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package list_all

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip/types"
"github.com/antihax/optional"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
"github.com/wizedkyle/sumologic-go-sdk/service/cip/types"
)

func NewCmdAccessKeysListAll(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/access-keys/list_personal/list_personal.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package list_personal

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccessKeysListPersonal(client *cip.APIClient) *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions pkg/cmd/access-keys/update/update.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package update

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip/types"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
"github.com/wizedkyle/sumologic-go-sdk/service/cip/types"
)

func NewCmdAccessKeysUpdate(client *cip.APIClient) *cobra.Command {
Expand Down
14 changes: 7 additions & 7 deletions pkg/cmd/account/account.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package account

import (
NewCmdAccountCreateSubdomain "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/create-subdomain"
NewCmdAccountDeleteSubdomain "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/delete-subdomain"
NewCmdAccountGetOwner "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/get-owner"
NewCmdAccountGetSubdomain "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/get-subdomain"
NewCmdAccountRecoverSubdomain "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/recover-subdomain"
NewCmdAccountUpdateSubdomain "github.com/SumoLogic-Incubator/sumocli/pkg/cmd/account/update-subdomain"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
NewCmdAccountCreateSubdomain "github.com/wizedkyle/sumocli/pkg/cmd/account/create-subdomain"
NewCmdAccountDeleteSubdomain "github.com/wizedkyle/sumocli/pkg/cmd/account/delete-subdomain"
NewCmdAccountGetOwner "github.com/wizedkyle/sumocli/pkg/cmd/account/get-owner"
NewCmdAccountGetSubdomain "github.com/wizedkyle/sumocli/pkg/cmd/account/get-subdomain"
NewCmdAccountRecoverSubdomain "github.com/wizedkyle/sumocli/pkg/cmd/account/recover-subdomain"
NewCmdAccountUpdateSubdomain "github.com/wizedkyle/sumocli/pkg/cmd/account/update-subdomain"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccount(client *cip.APIClient) *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions pkg/cmd/account/create-subdomain/create-subdomain.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package create_subdomain

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip/types"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
"github.com/wizedkyle/sumologic-go-sdk/service/cip/types"
)

func NewCmdAccountCreateSubdomain(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/account/delete-subdomain/delete-subdomain.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package delete_subdomain

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccountDeleteSubdomain(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/account/get-owner/get-owner.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package get_owner

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccountGetOwner(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/account/get-subdomain/get-subdomain.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package get_subdomain

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccountGetSubdomain(client *cip.APIClient) *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/account/recover-subdomain/recover-subdomain.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package recover_subdomain

import (
"github.com/SumoLogic-Incubator/sumocli/pkg/cmdutils"
"github.com/SumoLogic-Incubator/sumologic-go-sdk/service/cip"
"github.com/spf13/cobra"
"github.com/wizedkyle/sumocli/pkg/cmdutils"
"github.com/wizedkyle/sumologic-go-sdk/service/cip"
)

func NewCmdAccountRecoverSubdomain(client *cip.APIClient) *cobra.Command {
Expand Down
Loading

0 comments on commit 93a4463

Please sign in to comment.