diff options
| author | tyropro <[email protected]> | 2026-05-11 10:19:03 +0100 |
|---|---|---|
| committer | tyropro <[email protected]> | 2026-05-11 10:19:11 +0100 |
| commit | b03856d83a149815b945c5b80629d7a359afce9a (patch) | |
| tree | bb6a50b6eab72606b282460fa72ddf4aacfe0dc8 | |
| parent | 3bb5ac6eca5c68be0195d77ac2c6a163ddd7dc26 (diff) | |
feature: added justfile
| -rw-r--r-- | justfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..fb14636 --- /dev/null +++ b/justfile @@ -0,0 +1,5 @@ +build: + go build . + +run: + go run . |
