style: reformat with golines and enforce on commit
1 file changed, 4 insertions(+), 1 deletion(-)
changed files
M internal/server/server.go → internal/server/server.go
@@ -245,7 +245,10 @@ http.Error(w, err.Error(), http.StatusInternalServerError) } }) - mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("frontend/static")))) + mux.Handle( + "/static/", + http.StripPrefix("/static/", http.FileServer(http.Dir("frontend/static"))), + ) if runtimeConfig.LiveReload { applyDevModeOverrides(config)