From 5f5444f99fb63c896abe747e603200f768217d18 Mon Sep 17 00:00:00 2001 From: maddalax Date: Tue, 5 Nov 2024 15:09:22 -0600 Subject: [PATCH] test --- htmgo-site/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htmgo-site/main.go b/htmgo-site/main.go index 4bafd98..904bf11 100644 --- a/htmgo-site/main.go +++ b/htmgo-site/main.go @@ -1,6 +1,7 @@ package main import ( + "fmt" "github.com/maddalax/htmgo/framework/h" "github.com/maddalax/htmgo/framework/service" "htmgo-site/__htmgo" @@ -19,6 +20,8 @@ func main() { service.Set(locator, service.Singleton, markdown.NewRenderer) service.Set(locator, service.Singleton, cache.NewSimpleCache) + fmt.Printf("starting up\n") + h.Start(h.AppOpts{ ServiceLocator: locator, LiveReload: true,