forked from lug/matterbridge
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			347 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			347 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/facebookgo/grace/gracehttp"
 | 
						|
	"github.com/labstack/echo"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	// Setup
 | 
						|
	e := echo.New()
 | 
						|
	e.GET("/", func(c echo.Context) error {
 | 
						|
		return c.String(http.StatusOK, "Six sick bricks tick")
 | 
						|
	})
 | 
						|
	e.Server.Addr = ":1323"
 | 
						|
 | 
						|
	// Serve it like a boss
 | 
						|
	e.Logger.Fatal(gracehttp.Serve(e.Server))
 | 
						|
}
 |