Basic functionality working
Some checks failed
Deploy and Push Docker Image / BuildAndPush (push) Failing after 14s

This commit is contained in:
Henri Burau
2025-06-19 13:57:36 +02:00
parent fac655242f
commit 64f955c4a1
8 changed files with 293 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package main
import (
"log"
"gitea.henriburau.de/ace966/WeeWooWebhook/internal/olc"
"gitea.henriburau.de/ace966/WeeWooWebhook/internal/server"
)
const (
WeeWooAddr = "http://192.168.1.167"
)
func main() {
officeLightClient := olc.NewClient(WeeWooAddr)
server := server.NewServer(officeLightClient)
log.Fatal(server.ListenAndServe())
}