Created
October 2, 2017 09:16
-
-
Save ildarusmanov/6bd791221f4e0264ea6855a1a909fdd3 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 ( | |
"project7/models" | |
"project7/controllers" | |
) | |
func main() { | |
// create article model | |
artcl := models.CreateArticle("New article") | |
// create controller | |
cntrllr := controllers.CreateController() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment