diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0b443f3..dfa61d3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version-file: 'go.mod' - name: Build run: go build -v ./... diff --git a/go.mod b/go.mod index 0fc2781..76439b5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module squatrr -go 1.24.9 +go 1.24.0 + +toolchain go1.24.9 require ( golang.org/x/net v0.48.0 diff --git a/lib/processor/processor.go b/lib/processor/processor.go index 95af6c9..23fe1c4 100644 --- a/lib/processor/processor.go +++ b/lib/processor/processor.go @@ -1 +1,7 @@ package processor + +// TODO: This is where the actual processing code from main.go should reside +// TODO: implement and then move main.go to cli.go in a new directory +func ProcessDomain() { + +}