aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2018-01-17 00:53:00 +0900
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2018-01-17 00:53:00 +0900
commit4005ee94f1e7123864ace071042cdc3a6fb0829f (patch)
tree1cdfccc1e0d7da00324808e3e1249c8f9a11a881
parent33cf0b51bf76475dc590e5e7345043d6026bb733 (diff)
downloadvim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.tar.gz
vim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.tar.bz2
vim-sonictemplate-4005ee94f1e7123864ace071042cdc3a6fb0829f.zip
fix indentation
-rw-r--r--template/go/base-web-standard.go4
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}}