overflow_server_app/module/member/signup.go
2017-08-23 18:19:21 +09:00

17 lines
263 B
Go

package member
import (
"fmt"
"git.loafle.net/overflow/overflow_server_app/server"
"github.com/valyala/fasthttp"
)
func SignUp(sctx *server.ServerContext, ctx *fasthttp.RequestCtx) {
msg := sctx.Value("key1")
fmt.Fprintf(ctx, "Welcome!: %s \n", msg)
}