member_gateway_rest/service/member-service.go

20 lines
442 B
Go
Raw Normal View History

2018-04-06 10:08:38 +00:00
package service
import (
"git.loafle.net/commons/server-go"
"github.com/valyala/fasthttp"
)
type MemberService struct {
}
func (ms *MemberService) Signin(servletCtx server.ServletCtx, ctx *fasthttp.RequestCtx, id string, pw string) (string, error) {
return "dkfksddfk", nil
}
func (ms *MemberService) Register(servletCtx server.ServletCtx, ctx *fasthttp.RequestCtx, id string, pw string) (string, error) {
return "dkfksddfk", nil
}