diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README.org | 3 | ||||
-rw-r--r-- | go.mod | 3 | ||||
-rw-r--r-- | justfile | 8 | ||||
-rw-r--r-- | main.go | 9 |
5 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e660fd9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin/ diff --git a/README.org b/README.org new file mode 100644 index 0000000..96aac27 --- /dev/null +++ b/README.org @@ -0,0 +1,3 @@ +#+TITLE: snorvik + +Snorvik is a King of the Hill cybersecurity challenge @@ -0,0 +1,3 @@ +module git.robbyzambito.me/snorvik + +go 1.24.3 diff --git a/justfile b/justfile new file mode 100644 index 0000000..b3e9b1f --- /dev/null +++ b/justfile @@ -0,0 +1,8 @@ +default: + @just --list + +build: + go build -o bin/snorvik + +run: build + ./bin/snorvik @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("hi") +} |