feat: Initial commit

This commit is contained in:
2024-11-29 14:30:52 -05:00
commit 58e0f0e4b5
18 changed files with 732 additions and 0 deletions

15
justfile Normal file
View File

@@ -0,0 +1,15 @@
build mode="debug":
swift build -c {{mode}}
alias b := build
test:
swift test
alias t := test
run *ARGS:
swift run hpa {{ARGS}}
alias r := run