feat: initialize new go project

This commit is contained in:
Fritz Heiden 2025-03-13 13:55:54 +01:00
commit 16d58d8202
4 changed files with 14 additions and 0 deletions

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CGO_ENABLED=1 go build -C "$SCRIPT_DIR/main" -o ../start

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module playback-device-server
go 1.24.1

7
main/main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}

BIN
start Executable file

Binary file not shown.