diff options
| author | ewy <ewy0@protonmail.com> | 2026-08-13 12:34:42 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-08-13 12:34:42 +0200 |
| commit | d6e00e6af2c4168ea1f6ca8e34a45fa22e712bc9 (patch) | |
| tree | 3b7ec64765b0a5e6485b2279a04f12d783430041 | |
add files
| -rw-r--r-- | .pik/build.sh | 2 | ||||
| -rw-r--r-- | .pik/run.sh | 2 | ||||
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | go.mod | 8 | ||||
| -rw-r--r-- | main.go | 5 |
5 files changed, 18 insertions, 0 deletions
diff --git a/.pik/build.sh b/.pik/build.sh new file mode 100644 index 0000000..68d32f2 --- /dev/null +++ b/.pik/build.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +go build .
\ No newline at end of file diff --git a/.pik/run.sh b/.pik/run.sh new file mode 100644 index 0000000..40d8996 --- /dev/null +++ b/.pik/run.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +go run .
\ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69eacb --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# ponger @@ -0,0 +1,8 @@ +module ponger + +go 1.26.5 + +require ( + github.com/Zyko0/go-sdl3 v0.1.1 // indirect + github.com/spf13/pflag v1.0.10 // indirect +) @@ -0,0 +1,5 @@ +package main + +func main() { + +} |
