hotgo/hotgo-server/app/service/apiService/member_service.go
2022-02-25 17:11:17 +08:00

23 lines
514 B
Go
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// @Link https://github.com/bufanyun/hotgo
// @Copyright Copyright (c) 2022 HotGo CLI
// @Author  Ms <133814250@qq.com>
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
//
package apiService
import (
"context"
"github.com/gogf/gf/v2/frame/g"
)
var Member = new(member)
type member struct {}
func (service *member) Test() (ctx context.Context) {
g.Log().Print(ctx, "apiService--WithMember--test...")
//g.Log().Print(ctx, "api调用" , service.App.Admin.Member.Test())
return
}