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