12345678910111213141516 |
- package handler
- import (
- "GtDataStore/app/cmd/events/internal/logic/job"
- "context"
- )
- func handlerEvent(ctx context.Context, task *job.Task, technologyName string) error {
- queue := task.Job.SvcCtx.Cache
- for info := range eventChan {
- }
- return nil
- }
|