package grpc import ( "gitlink.org.cn/cloudream/common/pkgs/ioswitch/exec" agentserver "gitlink.org.cn/cloudream/storage/common/pkgs/grpc/agent" "gitlink.org.cn/cloudream/storage/common/pkgs/storage/mgr" ) type Service struct { agentserver.AgentServer swWorker *exec.Worker stgMgr *mgr.Manager } func NewService(swWorker *exec.Worker, stgMgr *mgr.Manager) *Service { return &Service{ swWorker: swWorker, stgMgr: stgMgr, } }