Created
February 26, 2020 13:07
-
-
Save bastianccm/74f78a64d699c883df76e88d9fcb9897 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"mysite/polls" | |
"flamingo.me/dingo" | |
"flamingo.me/flamingo/v3" | |
"flamingo.me/flamingo/v3/core/requestlogger" | |
) | |
func main() { | |
flamingo.App([]dingo.Module{ | |
new(requestlogger.Module), | |
new(polls.Module), // the polls Module we just created | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment