style: cleanup and format

This commit is contained in:
Igor Sirotin 2025-11-19 18:49:07 +00:00
parent 3bcf73b531
commit e78f763079
No known key found for this signature in database
GPG Key ID: 0EABBCB40CB9AD4A
2 changed files with 85 additions and 87 deletions

View File

@ -135,7 +135,6 @@ import (
"strconv"
"strings"
"sync"
"time"
"unsafe"
)

View File

@ -2,8 +2,8 @@ package sds
import (
"encoding/json"
"unsafe"
"time"
"unsafe"
)
const requestTimeout = 30 * time.Second
@ -120,4 +120,3 @@ func (rm *ReliabilityManager) parseMissingDepsEvent(eventStr string) {
rm.callbacks.OnMissingDependencies(missingDepsEvent.MessageId, missingDepsEvent.MissingDeps, missingDepsEvent.ChannelId)
}
}