Skip to content

Instantly share code, notes, and snippets.

@bastianccm
Created February 26, 2020 13:13
Show Gist options
  • Save bastianccm/6109017c17a3136fa7ee37b58f0128cb to your computer and use it in GitHub Desktop.
Save bastianccm/6109017c17a3136fa7ee37b58f0128cb to your computer and use it in GitHub Desktop.
package main
import (
"mysite/polls"
"flamingo.me/dingo"
"flamingo.me/flamingo/v3"
"flamingo.me/flamingo/v3/core/gotemplate"
"flamingo.me/flamingo/v3/core/requestlogger"
)
func main() {
flamingo.App([]dingo.Module{
new(gotemplate.Module),
new(requestlogger.Module),
new(polls.Module),
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment