aboutsummaryrefslogtreecommitdiff
path: root/network/receivepack/service/service.go
blob: 0538cf73a45144f1a44df3e3b25985b06f10a934 (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.
func New(opts Options) *Service {
	return &Service{opts: opts}
}