diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/go/base-web-standard.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/go/base-web-standard.go b/template/go/base-web-standard.go index b4a10cc..a330b50 100644 --- a/template/go/base-web-standard.go +++ b/template/go/base-web-standard.go @@ -6,9 +6,9 @@ import ( ) func main() { - http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "{{_cursor_}}") }) - http.ListenAndServe(":8080", nil) + http.ListenAndServe(":8080", nil) } {{_filter_:web-standard}} |