slowwildwslogic.go 564 B

1234567891011121314151617181920212223242526272829
  1. package logic
  2. import (
  3. "context"
  4. "slowwildws/internal/svc"
  5. "github.com/zeromicro/go-zero/core/logx"
  6. )
  7. type SlowwildwsLogic struct {
  8. logx.Logger
  9. ctx context.Context
  10. svcCtx *svc.ServiceContext
  11. }
  12. func NewSlowwildwsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SlowwildwsLogic {
  13. return &SlowwildwsLogic{
  14. Logger: logx.WithContext(ctx),
  15. ctx: ctx,
  16. svcCtx: svcCtx,
  17. }
  18. }
  19. // func (l *SlowwildwsLogic) Slowwildws(req *types.Request) (resp *types.Response, err error) {
  20. // // todo: add your logic here and delete this line
  21. // return
  22. // }