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