Add backend trait and git backend stub
parent: tbd commit: b9203a9
1 | |
2 | |
3 | use Error; |
4 | |
5 | use crate:: |
6 | |
7 | CreateRepositoryCommand, CreateRepositoryResponse, RepositoryFileInspectionCommand, |
8 | RepositoryFileInspectionResponse, RepositoryInfoRequest, RepositoryIssueLabelsRequest, |
9 | RepositoryIssueLabelsResponse, RepositoryIssuesCountRequest, RepositoryIssuesCountResponse, |
10 | RepositoryIssuesRequest, RepositoryIssuesResponse, |
11 | , |
12 | , | RepositoryView
13 | ; |
14 | |
15 | |
16 | |
17 | &mut self, |
18 | request: &CreateRepositoryCommand, |
19 | ; |
20 | |
21 | &mut self, |
22 | request: &RepositoryInfoRequest, |
23 | ; |
24 | |
25 | &mut self, |
26 | request: &RepositoryFileInspectionCommand, |
27 | ; |
28 | |
29 | |
30 | &mut self, |
31 | request: &RepositoryIssuesCountRequest, |
32 | ; |
33 | |
34 | &mut self, |
35 | request: &RepositoryIssueLabelsRequest, |
36 | ; |
37 | |
38 | &mut self, |
39 | request: &RepositoryIssuesRequest, |
40 | ; |
41 | |
42 |