Skip to content

Instantly share code, notes, and snippets.

@jaredfolkins
Created March 26, 2014 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredfolkins/9795523 to your computer and use it in GitHub Desktop.
Save jaredfolkins/9795523 to your computer and use it in GitHub Desktop.
func ShowCris(fname string, lname string) (string, error) {
res, err := DoSomethingAmazing(fname,lname)
if err != nil {
Panic(err)
}
return res, nil
}
@jaredfolkins
Copy link
Author

m.Get("/", func(r render.Render) {
    r.HTML(200, "hello", "jeremy")
  })

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