Changed: DB Params

This commit is contained in:
2025-03-20 12:35:13 +01:00
parent 8640a12439
commit b71b3d12ca
822 changed files with 134218 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package main
import (
"context"
"fmt"
"os"
"github.com/a-h/templ/storybook/example"
)
func main() {
s := example.Storybook()
if err := s.ListenAndServeWithContext(context.Background()); err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
}