echoのWrapHandlerを使ってnet/httpで作られた関数をそのまま使う
使い方
-
echo.WrapHandler(http.HandlerFunc(Redirect))
のような感じで使う
ソース
package main
import (
"net/http"
"github.com/labstack/echo"
)
func main() {
e := echo.New()
e.GET("/", echo.WrapHandler(http.HandlerFunc(Redirect)))
e.Logger.Fatal(e.Start(":1323"))
}
func Redirect(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "https://vamdemicsystem.black", http.StatusFound)
}
Author And Source
この問題について(echoのWrapHandlerを使ってnet/httpで作られた関数をそのまま使う), 我々は、より多くの情報をここで見つけました https://qiita.com/yuta_vamdemic/items/597abb3ca10a9d4956aa著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .