Skip to content

Instantly share code, notes, and snippets.

@bscott
Created December 27, 2013 09:09
Show Gist options
  • Select an option

  • Save bscott/8144447 to your computer and use it in GitHub Desktop.

Select an option

Save bscott/8144447 to your computer and use it in GitHub Desktop.
Martini Go Webframework
package main
import "github.com/codegangsta/martini"
func main() {
m := martini.Classic()
m.Get("/", func() string {
return "Hello world!"
})
m.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment