Skip to content

Instantly share code, notes, and snippets.

@jakelacey2012
Created June 30, 2018 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakelacey2012/48c48e5f54925828bc6b8fe300e2202a to your computer and use it in GitHub Desktop.
Save jakelacey2012/48c48e5f54925828bc6b8fe300e2202a to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
"github.com/labstack/echo"
"github.com/labstack/echo/middleware"
)
type React struct {
path string
}
type App struct {
engine *echo.Echo
react *React
}
func main() {
// start graphql server
// start client side application
// Echo instance
e := echo.New()
// Middleware
e.Use(middleware.Logger())
e.Use(middleware.Recover())
// Routes
e.GET("/", hello)
// Start server
e.Logger.Fatal(e.Start(":1323"))
}
func hello(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment