ref: df1f2fb3daa1acd25c88510f259d5535fb482126
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}
}