Skip to content

Commit

Permalink
fix: build mod
Browse files Browse the repository at this point in the history
  • Loading branch information
notdodo committed Nov 8, 2023
1 parent b3c5e87 commit 929aad5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cmd/dump.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"IAMme-IAMme/pkg/app"
"github.com/notdodo/IAMme-IAMme/pkg/app"

"github.com/spf13/cobra"
)
Expand Down
7 changes: 4 additions & 3 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package cmd

import (
"IAMme-IAMme/pkg/infra/neo4j"
"IAMme-IAMme/pkg/infra/okta"
"fmt"

"github.com/notdodo/IAMme-IAMme/pkg/infra/neo4j"
"github.com/notdodo/IAMme-IAMme/pkg/infra/okta"

"github.com/spf13/cobra"
)

Expand All @@ -15,7 +16,7 @@ type clients_type struct {

var clients *clients_type
var rootCmd = &cobra.Command{
Use: "iamme-iamme",
Use: "github.com/notdodo/IAMme-IAMme",
Short: "A CLI tool to interact with Okta and Neo4j",
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module IAMme-IAMme
module github.com/notdodo/IAMme-IAMme

go 1.20

Expand Down
7 changes: 4 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package main

import (
"IAMme-IAMme/cmd"
"IAMme-IAMme/pkg/infra/neo4j"
"IAMme-IAMme/pkg/infra/okta"
"log"

"github.com/notdodo/IAMme-IAMme/cmd"
"github.com/notdodo/IAMme-IAMme/pkg/infra/neo4j"
"github.com/notdodo/IAMme-IAMme/pkg/infra/okta"

"github.com/joho/godotenv"
)

Expand Down
5 changes: 3 additions & 2 deletions pkg/app/okta_neo4j.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package app

import (
"IAMme-IAMme/pkg/infra/neo4j"
"IAMme-IAMme/pkg/infra/okta"
"context"
"log"
"strings"

"github.com/notdodo/IAMme-IAMme/pkg/infra/neo4j"
"github.com/notdodo/IAMme-IAMme/pkg/infra/okta"

neo4jSdk "github.com/neo4j/neo4j-go-driver/v5/neo4j"
)

Expand Down

0 comments on commit 929aad5

Please sign in to comment.