mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-12-04 23:31:05 +01:00
14 lines
211 B
Go
14 lines
211 B
Go
package lib
|
|
|
|
func CreateDefaultGitClient() GitClient {
|
|
return CreateGoGitClient()
|
|
}
|
|
|
|
func CreateGoGitClient() GitClient {
|
|
return GoGitClient{}
|
|
}
|
|
|
|
func CreateCmdGitClient() GitClient {
|
|
return CmdGitClient{}
|
|
}
|