コード例 #1
0
ファイル: errors.go プロジェクト: hraban/web
func main() {
	web.Get("/", root)
	web.Get("/404", notfound)
	web.Get("/teapot", teapot)
	web.Get("/generic", generic)
	web.Run("0.0.0.0:8081")
}
コード例 #2
0
ファイル: params.go プロジェクト: hraban/web
func main() {
	web.Get("/", root)
	web.Post("/process", process)
	web.Run("127.0.0.1:9999")
}
コード例 #3
0
ファイル: securecookie.go プロジェクト: hraban/web
func main() {
	web.Config.CookieSecret = "7C19QRmwf3mHZ9CPAaPQ0hsWeufKd"
	web.Get("/", root)
	web.Post("/say", say)
	web.Run("127.0.0.1:9999")
}
コード例 #4
0
ファイル: compress.go プロジェクト: hraban/web
func main() {
	web.AddWrapper(web.CompressWrapper)
	web.Get("/", root)
	web.Run("127.0.0.1:9999")
}
コード例 #5
0
ファイル: helloTLS.go プロジェクト: hraban/web
func main() {
	web.Get("/(.*)", hello)
	// You can create an example cert using generate_cert.go include in pkg crypto/tls
	web.RunTLS(":9999", "/tmp/cert.pem", "/tmp/key.pem")
}
コード例 #6
0
ファイル: wrapper.go プロジェクト: hraban/web
func main() {
	// Add AuthHandler to our PreModule list
	web.AddPreModule(AuthHandler)
	web.Get("/(.*)", Hello)
	web.Run("0.0.0.0:9999")
}
コード例 #7
0
ファイル: multipart.go プロジェクト: hraban/web
func main() {
	web.Get("/", index)
	web.Post("/multipart", multipart)
	web.Run("0.0.0.0:9999")
}
コード例 #8
0
ファイル: hello.go プロジェクト: hraban/web
func main() {
	web.Get("/(.*)", hello)
	web.Run("127.0.0.1:9999")
}
コード例 #9
0
ファイル: handlersignatures.go プロジェクト: hraban/web
func main() {
	web.Get("/", root)
	web.Get("/a", a)
	web.Get("/b", b)
	web.Get("/c", c)
	web.Get("/d", d)
	web.Get("/e", e)
	web.Get("/f", myhandlertype("return io.Reader"))
	web.Get("/g", g)
	web.Get("/h", h)
	web.Get("/i", i)
	web.Get("/j", j)
	web.Run("127.0.0.1:9999")
}