initial commit

This commit is contained in:
2026-01-23 17:54:11 +01:00
commit 273266abb7
8 changed files with 129 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
// main.go
package main
import "status-bot/lib"
func main() {
server := &lib.StatusBotServer{}
bot := &lib.StatusBotSender{}
bot.SendCreateThreadRequest()
server.Start()
}