package rename

This commit is contained in:
nquidox 2025-12-20 16:05:56 +03:00
parent feb7d770e6
commit 4ec69fcc08
5 changed files with 7 additions and 7 deletions

View file

@ -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,
}
}