From 937384e4bc1fffa6c0e4233c4dc11ae9ff75ad34 Mon Sep 17 00:00:00 2001 From: bel Date: Tue, 14 Oct 2025 20:43:44 -0600 Subject: [PATCH] stub --- .gitignore | 2 ++ cmd/tts-room/main.go | 4 ++++ go.mod | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 cmd/tts-room/main.go create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ad233b0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +**/*.sw* +/cmd/tts-room/tts-room diff --git a/cmd/tts-room/main.go b/cmd/tts-room/main.go new file mode 100644 index 0000000..da29a2c --- /dev/null +++ b/cmd/tts-room/main.go @@ -0,0 +1,4 @@ +package main + +func main() { +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..69b15af --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module tts-room + +go 1.22.2