Files
statusbot/main.go
2026-01-23 22:28:28 +01:00

12 lines
178 B
Go

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