mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-17 23:38:55 +00:00
Update vendor
This commit is contained in:
25
vendor/github.com/labstack/echo/cookbook/hello-world/server.go
generated
vendored
Normal file
25
vendor/github.com/labstack/echo/cookbook/hello-world/server.go
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/labstack/echo"
|
||||
"github.com/labstack/echo/middleware"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Echo instance
|
||||
e := echo.New()
|
||||
|
||||
// Middleware
|
||||
e.Use(middleware.Logger())
|
||||
e.Use(middleware.Recover())
|
||||
|
||||
// Route => handler
|
||||
e.GET("/", func(c echo.Context) error {
|
||||
return c.String(http.StatusOK, "Hello, World!\n")
|
||||
})
|
||||
|
||||
// Start server
|
||||
e.Logger.Fatal(e.Start(":1323"))
|
||||
}
|
Reference in New Issue
Block a user