go.mod cleanup; made worker's Stop() method return an error

This commit is contained in:
2025-09-21 14:22:19 +00:00
parent bf3bebf103
commit 4e52950458
5 changed files with 19 additions and 33 deletions

View File

@@ -7,11 +7,12 @@
package data_service
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (

View File

@@ -8,6 +8,7 @@ package data_service
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"