Timo Riegebauer 860135aff1 first commit
2025-04-22 09:08:17 +00:00

14 lines
216 B
Go

package router
import (
"net/http"
"git.trcreatives.com/triegebauer/go-dart"
)
func SetupRoutes(b *dart.Dart) {
b.GET("/", func(ctx *dart.Context) error {
return ctx.Text(http.StatusOK, "Hello, Dart!")
})
}