10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
|
|
set -a
|
|
source .env
|
|
set +a
|
|
|
|
exec go run ./cmd/geniusrund
|