Created
November 19, 2018 06:17
-
-
Save ykyuen/96bfb257a7c4a5eb3e41581b419285b7 to your computer and use it in GitHub Desktop.
setup-nested-html-template-in-go-echo-web-framework-04
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
golang-echo-template-example/ | |
├── handler/ # folder of request handlers | |
│ └── home_handler.go | |
├── vendor/ # dependencies managed by dep | |
│ ├── github.com/* | |
│ └── golang.org/* | |
├── view/ # folder of html templates | |
│ └── home.html | |
├── Gopkg.lock # dep config file | |
├── Gopkg.toml # dep config file | |
└── main.go # programme entrypoint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment