added initial go file

This commit is contained in:
Stephen McQuay 2013-05-08 22:43:18 -07:00
parent 659251e87d
commit aff09ed2a1
1 changed files with 22 additions and 0 deletions

22
main.go Normal file
View File

@ -0,0 +1,22 @@
package main
import (
"flag"
"github.com/gorilla/sessions"
"log"
"net/http"
)
var addr = flag.String("addr", ":8000", "address I'll listen on.")
var static_files = flag.String("static", "./static", "location of static files")
var store = sessions.NewCookieStore([]byte("hello world"))
func main() {
flag.Parse()
http.Handle("/",
http.FileServer(http.Dir(*static_files)))
if err := http.ListenAndServe(*addr, nil); err != nil {
log.Fatal("ListenAndServe:", err)
}
}