Skip to content

Commit

Permalink
Merge pull request #17 from uselagoon/feature/docker-build
Browse files Browse the repository at this point in the history
updating mods to uselagoon
  • Loading branch information
Tim Clifford authored Oct 12, 2021
2 parents 84bff29 + c3a08ea commit b27af96
Show file tree
Hide file tree
Showing 12 changed files with 463 additions and 18 deletions.
2 changes: 1 addition & 1 deletion cmd/filegather.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"encoding/json"
"fmt"
"github.com/bomoko/lagoon-facts/gatherers"
"github.com/uselagoon/lagoon-facts-app/gatherers"
"github.com/spf13/cobra"
"io/ioutil"
"log"
Expand Down
2 changes: 1 addition & 1 deletion cmd/gather.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cmd

import (
"encoding/json"
"github.com/bomoko/lagoon-facts/gatherers"
"github.com/spf13/cobra"
"github.com/uselagoon/lagoon-facts-app/gatherers"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion gatherers/ApplicationGatherer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gatherers
import (
"encoding/json"
"fmt"
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion gatherers/DrushGatherer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"log"
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
)

type drushGatherer struct {
Expand Down
2 changes: 1 addition & 1 deletion gatherers/DrushPMLGatherer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gatherers
import (
"encoding/json"
"fmt"
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion gatherers/PhpGatherer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package gatherers

import (
"log"
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
)

type phpGatherer struct {
Expand Down
2 changes: 1 addition & 1 deletion gatherers/PlatformGatherer.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gatherers

import (
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion gatherers/TechnologyGatherer.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gatherers

import (
"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion gatherers/graphql.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"github.com/bomoko/lagoon-facts/utils"
"github.com/uselagoon/lagoon-facts-app/utils"
"github.com/machinebox/graphql"
"golang.org/x/oauth2"
)
Expand Down
13 changes: 5 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
module github.com/bomoko/lagoon-facts
module github.com/uselagoon/lagoon-facts-app

go 1.13

require (
github.com/golang/protobuf v1.4.3 // indirect
github.com/machinebox/graphql v0.2.2
github.com/mitchellh/go-homedir v1.1.0
github.com/spf13/cobra v1.1.1
github.com/spf13/viper v1.7.1
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58
golang.org/x/text v0.3.3
github.com/spf13/viper v1.9.0
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
golang.org/x/text v0.3.6
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
448 changes: 448 additions & 0 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/
package main

import "github.com/bomoko/lagoon-facts/cmd"
import "github.com/uselagoon/lagoon-facts-app/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit b27af96

Please sign in to comment.