20 lines
442 B
Go
20 lines
442 B
Go
|
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
|
||
|
}
|