Skip to content

Instantly share code, notes, and snippets.

@aliou
Created February 13, 2015 22:35
Show Gist options
  • Save aliou/69811040ce068d6821ff to your computer and use it in GitHub Desktop.
Save aliou/69811040ce068d6821ff to your computer and use it in GitHub Desktop.
go get test
package main
import "github.com/go-martini/martini"
func main() {
m := martini.Classic()
m.Get("/", func() string {
return "Hello world!"
})
m.Run()
}
@aliou
Copy link
Author

aliou commented Feb 13, 2015

go get "gist.github.com/69811040ce068d6821ff.git"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment