Skip to content

Commit

Permalink
Merge pull request #27 from stevenaldinger/bugfix/move-shared-gocty-h…
Browse files Browse the repository at this point in the history
…elpers-to-public-dir

move gocty helpers to shared public directory
  • Loading branch information
stevenaldinger committed Mar 20, 2019
2 parents bd88b4f + 474fedb commit ae152de
Show file tree
Hide file tree
Showing 23 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cmd/decker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"

"github.com/stevenaldinger/decker/internal/pkg/dependencies"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/stevenaldinger/decker/internal/pkg/hcl"
"github.com/stevenaldinger/decker/internal/pkg/paths"
"github.com/stevenaldinger/decker/internal/pkg/plugins"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/a2sv/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/dig/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/dnsrecon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/metasploit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
// "encoding/json"
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/nikto/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/nmap/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/t94j0/nmap"
"github.com/zclconf/go-cty/cty"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/nmap_simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/nslookup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"bufio"
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/shell/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/sslscan/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/sslyze/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/sublist3r/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/the_harvester/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/w3af/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"bytes"
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/wafninja/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/wafw00f/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/wpscan/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/app/decker/plugins/xss/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/zclconf/go-cty/cty"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/plugins/plugin_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package plugins

import (
"fmt"
"github.com/stevenaldinger/decker/internal/pkg/gocty"
"github.com/stevenaldinger/decker/pkg/gocty"
"github.com/stevenaldinger/decker/internal/pkg/paths"
"github.com/zclconf/go-cty/cty"
"os"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ae152de

Please sign in to comment.