Skip to content

Instantly share code, notes, and snippets.

@sumanentc
Last active October 4, 2019 09:09
Show Gist options
  • Save sumanentc/d4f91721f05b15d91802d5cb29507208 to your computer and use it in GitHub Desktop.
Save sumanentc/d4f91721f05b15d91802d5cb29507208 to your computer and use it in GitHub Desktop.
package main
import (
"github.com/labstack/echo"
)
//main function
func main() {
// create a new echo instance
e := echo.New()
e.Logger.Fatal(e.Start(":8000"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment