diff options
Diffstat (limited to 'cmd/blog/appengine.go')
-rw-r--r-- | cmd/blog/appengine.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cmd/blog/appengine.go b/cmd/blog/appengine.go new file mode 100644 index 0000000..174efe4 --- /dev/null +++ b/cmd/blog/appengine.go @@ -0,0 +1,19 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build appengine + +// This file implements an App Engine blog server. + +package main + +import "net/http" + +func init() { + s, err := NewServer("/", "content/", "template/") + if err != nil { + panic(err) + } + http.Handle("/", s) +} |