package rename
This commit is contained in:
parent
feb7d770e6
commit
4ec69fcc08
5 changed files with 7 additions and 7 deletions
|
|
@ -10,9 +10,9 @@ import (
|
|||
"syscall"
|
||||
"task-processor/config"
|
||||
"task-processor/internal/appState"
|
||||
"task-processor/internal/network"
|
||||
"task-processor/internal/parsers"
|
||||
"task-processor/internal/processor"
|
||||
"task-processor/internal/remote"
|
||||
"task-processor/internal/shared"
|
||||
"time"
|
||||
)
|
||||
|
|
@ -24,7 +24,7 @@ type App struct {
|
|||
retryCount int
|
||||
retryMinutes int
|
||||
state *appState.State
|
||||
network *network.Network
|
||||
network *remote.Network
|
||||
numCPUs int
|
||||
}
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ func New(c *config.Config) *App {
|
|||
retryCount: c.TasksCfg.RetryCount,
|
||||
retryMinutes: c.TasksCfg.RetryMinutes,
|
||||
state: st,
|
||||
network: network.NewHandler(),
|
||||
network: remote.NewHandler(),
|
||||
numCPUs: numCPUs,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue