Last active
October 18, 2016 11:22
-
-
Save kaneshin/02d491bbc682ab3ca385c3bfd8152d69 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 ( | |
"log" | |
"net/http" | |
"github.com/kaneshin/gae-handson/app" | |
) | |
func main() { | |
log.Fatal(http.ListenAndServe(":8082", app.Router)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment