package mq import ( "gitlink.org.cn/cloudream/storage2/common/pkgs/storage/pool" ) type Service struct { stgAgts *pool.Pool } func NewService(stgAgts *pool.Pool) *Service { return &Service{ stgAgts: stgAgts, } }