12 lines
202 B
Go
12 lines
202 B
Go
![]() |
package worker
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"penahub.gitlab.yandexcloud.net/external/treasurer/internal/initialize"
|
||
|
)
|
||
|
|
||
|
func Run(ctx context.Context, workers *initialize.Workers) {
|
||
|
go workers.Mock.Run(ctx)
|
||
|
}
|