ctx := context.Background()
chan, err := atolService.Consume(ctx)
if err != nil {
logger.AppLogger().Panicw("atolService.ConsumeAndHandle(ctx)", "error", err.Error())
}
ctx := context.Background()
go func() {
chan, err := atolService.Consume(ctx)
if err != nil {
logger.AppLogger().Panicw("atolService.ConsumeAndHandle(ctx)", "error", err.Error())
}
}()