aboutsummaryrefslogtreecommitdiff
path: root/network/receivepack/service/service.go
blob: 0d931b64bab0435f4a007c05077a2e0365ac91e9 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}
}