Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions lib/processor/processor.go
Original file line number Diff line number Diff line change
@@ -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() {

}