Add build script

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-22 12:00:00 +01:00
parent 2b310791c5
commit ea4bbc94dc
2 changed files with 8 additions and 0 deletions

1
go-api/.gitigore Normal file
View file

@ -0,0 +1 @@
/result

7
go-api/build Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
go build -o result ./*.go
echo "Done."