diff options
author | Markus Wüstenberg | 2024-10-03 11:32:52 +0200 |
---|---|---|
committer | GitHub | 2024-10-03 11:32:52 +0200 |
commit | c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8 (patch) | |
tree | 00a6112bbe2907ff0aa1f3b3b3ea186dd73ed368 /internal/examples/app/cmd | |
parent | fe24f0575214093cc72201ecc1cc463865dcb1e2 (diff) | |
download | gomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.tar.lz gomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.tar.zst gomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.zip |
Fix example app to use maragu.dev/gomponents module path (#216)
Diffstat (limited to 'internal/examples/app/cmd')
-rw-r--r-- | internal/examples/app/cmd/app/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/examples/app/cmd/app/main.go b/internal/examples/app/cmd/app/main.go index 0c01576..5dad32a 100644 --- a/internal/examples/app/cmd/app/main.go +++ b/internal/examples/app/cmd/app/main.go @@ -8,6 +8,6 @@ import ( func main() { if err := http.Start(); err != nil { - slog.Info("Error", 1, "error", err) + slog.Info("Error starting", "error", err) } } |