ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /network/receivepack/service/service.go/
package service
// Service executes protocol-independent receive-pack requests.
type Service struct {
opts Options
}
// New creates one receive-pack service.
//
// Labels: Deps-Borrowed, Life-Parent.
func New(opts Options) *Service {
return &Service{opts: opts}
}