ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /receivepack/service/service.go/
package service
// Service executes protocol-independent receive-pack requests.
type Service struct {
opts Options
}
// New creates one receive-pack service.
func New(opts Options) *Service {
return &Service{opts: opts}
}