blob: 34ee95847cd8a5593e086ee063ea9694bd9ae126 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package file
import (
"io"
"gopkg.in/src-d/go-git.v2/clients/common"
)
type GitUploadPackService struct{}
func NewGitUploadPackService() *GitUploadPackService {
return &GitUploadPackService{}
}
func (s *GitUploadPackService) Connect(url common.Endpoint) error {
return nil
}
func (s *GitUploadPackService) ConnectWithAuth(url common.Endpoint, auth common.AuthMethod) error {
return nil
}
func (s *GitUploadPackService) Info() (*common.GitUploadPackInfo, error) {
return nil, nil
}
func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (io.ReadCloser, error) {
return nil, nil
}
|