summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-07-10 13:57:49 +0300
committerValery Piashchynski <[email protected]>2021-07-10 13:57:49 +0300
commit453eb10b436925ef91b1206e795e581e6293d132 (patch)
tree1bf08147397e2d68b7531039b989901a951c66df /pkg
parent435cfae06a963cce2e85384afd3946b95e4b8344 (diff)
Return structure instead of interface in places where that possible
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg')
-rwxr-xr-xpkg/worker/sync_worker.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/worker/sync_worker.go b/pkg/worker/sync_worker.go
index 84ff5977..38f44461 100755
--- a/pkg/worker/sync_worker.go
+++ b/pkg/worker/sync_worker.go
@@ -23,7 +23,7 @@ type SyncWorkerImpl struct {
}
// From creates SyncWorker from BaseProcess
-func From(process *Process) SyncWorker {
+func From(process *Process) *SyncWorkerImpl {
return &SyncWorkerImpl{
process: process,
fPool: sync.Pool{New: func() interface{} {