diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2018-01-17 00:53:00 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2018-01-17 00:53:00 +0900 |
commit | 4005ee94f1e7123864ace071042cdc3a6fb0829f (patch) | |
tree | 1cdfccc1e0d7da00324808e3e1249c8f9a11a881 /template/go/base-web-standard.go | |
parent | 33cf0b51bf76475dc590e5e7345043d6026bb733 (diff) | |
download | vim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.tar.gz vim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.tar.bz2 vim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.zip |
fix indentation
Diffstat (limited to 'template/go/base-web-standard.go')
-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}} |