| 1234567891011121314151617181920212223242526272829 |
- package logic
- import (
- "context"
- "slowwildws/internal/svc"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type SlowwildwsLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
- func NewSlowwildwsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SlowwildwsLogic {
- return &SlowwildwsLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- }
- }
- // func (l *SlowwildwsLogic) Slowwildws(req *types.Request) (resp *types.Response, err error) {
- // // todo: add your logic here and delete this line
- // return
- // }
|