12345678910111213141516171819202122232425 |
- package {{.pkgName}}
- import (
- {{.imports}}
- )
- type {{.logic}} struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
- func New{{.logic}}(ctx context.Context, svcCtx *svc.ServiceContext) *{{.logic}} {
- return &{{.logic}}{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- }
- }
- func (l *{{.logic}}) {{.function}}({{.request}}) {{.responseType}} {
- // todo: add your logic here and delete this line
- {{.returnString}}
- }
|