| 90 | return waApi.gitStartPull ? waApi.gitStartPull(path, branch, token, force) : 0; |
| 91 | } |
| 92 | static int64_t WaGitRun(char* repoPath, char* command, char* optionsJSON) { |
| 93 | auto& waApi = SharedWaApi(); |
| 94 | return waApi.gitRun ? waApi.gitRun(repoPath, command, optionsJSON) : 0; |
| 95 | } |
| 96 | static const char* WaGitPoll(int64_t jobId) { |
| 97 | auto& waApi = SharedWaApi(); |
| 98 | return waApi.gitPoll ? waApi.gitPoll(jobId) : nullptr; |
no test coverage detected