From 2efc3e538af5b36129faf80d29916413b7a23ff9 Mon Sep 17 00:00:00 2001 From: Manuel Carbajal Date: Tue, 5 Aug 2025 22:07:28 -0600 Subject: [PATCH] fix: add new templui dependency --- bootstrap/bootstrap_test.go | 2 +- bootstrap/cmd/service/controllers/initpages/home.templ | 2 +- bootstrap/cmd/service/controllers/initpages/home_templ.go | 2 +- bootstrap/templates/go.mod.tmpl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap/bootstrap_test.go b/bootstrap/bootstrap_test.go index 2ecd999..8606366 100644 --- a/bootstrap/bootstrap_test.go +++ b/bootstrap/bootstrap_test.go @@ -304,7 +304,7 @@ go 1.24 tool ( github.com/a-h/templ/cmd/templ github.com/air-verse/air - github.com/axzilla/templui/cmd/templui + github.com/templui/templui/cmd/templui ) ` Expect(dirWithPath("go.mod")).Should(testmatchers.BeAnExistingFileAndEqualString(content)) diff --git a/bootstrap/cmd/service/controllers/initpages/home.templ b/bootstrap/cmd/service/controllers/initpages/home.templ index b6b1b47..161a0b4 100644 --- a/bootstrap/cmd/service/controllers/initpages/home.templ +++ b/bootstrap/cmd/service/controllers/initpages/home.templ @@ -116,7 +116,7 @@ templ HomePage() {
  • - + diff --git a/bootstrap/cmd/service/controllers/initpages/home_templ.go b/bootstrap/cmd/service/controllers/initpages/home_templ.go index 8636547..6211b84 100644 --- a/bootstrap/cmd/service/controllers/initpages/home_templ.go +++ b/bootstrap/cmd/service/controllers/initpages/home_templ.go @@ -84,7 +84,7 @@ func HomePage() templ.Component { if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "

    Built with version: 1.0.0

    Features

    Type-Safe Templates

    Build type-safe HTML templates with Go's type system.

    Modern UI

    Beautiful UI with Tailwind CSS and interactive elements with HTMX.

    Fast Development

    Rapid development with hot reloading and efficient workflows.

    Database Integration

    Seamless PostgreSQL integration with GORM ORM for efficient data management.

    Caching

    Redis integration for high-performance caching and session management.

    Validation

    Robust input validation with built-in validation libraries.

    Testing

    Comprehensive testing support with Ginkgo and Gomega frameworks.

    Live Reload

    Automatic reloading during development with Air for a smoother workflow.

    Tools & Libraries

    ") + templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "

    Built with version: 1.0.0

    Features

    Type-Safe Templates

    Build type-safe HTML templates with Go's type system.

    Modern UI

    Beautiful UI with Tailwind CSS and interactive elements with HTMX.

    Fast Development

    Rapid development with hot reloading and efficient workflows.

    Database Integration

    Seamless PostgreSQL integration with GORM ORM for efficient data management.

    Caching

    Redis integration for high-performance caching and session management.

    Validation

    Robust input validation with built-in validation libraries.

    Testing

    Comprehensive testing support with Ginkgo and Gomega frameworks.

    Live Reload

    Automatic reloading during development with Air for a smoother workflow.

    Tools & Libraries

    ") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } diff --git a/bootstrap/templates/go.mod.tmpl b/bootstrap/templates/go.mod.tmpl index 71c841d..549c5c7 100644 --- a/bootstrap/templates/go.mod.tmpl +++ b/bootstrap/templates/go.mod.tmpl @@ -5,6 +5,6 @@ go {{.GoVersion}} tool ( {{"\t"}}github.com/a-h/templ/cmd/templ {{"\t"}}github.com/air-verse/air -{{"\t"}}github.com/axzilla/templui/cmd/templui +{{"\t"}}github.com/templui/templui/cmd/templui ) {{ end }}