mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
538 B
Go
14 lines
538 B
Go
package test
|
|
|
|
type Credential struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
TestRepoHttpUrl string `json:"test_repo_http_url"`
|
|
TestRepoMultiBranchUrl string `json:"test_repo_multi_branch_url"`
|
|
SshUsername string `json:"ssh_username"`
|
|
SshPassword string `json:"ssh_password"`
|
|
TestRepoSshUrl string `json:"test_repo_ssh_url"`
|
|
PrivateKey string `json:"private_key"`
|
|
PrivateKeyPath string `json:"private_key_path"`
|
|
}
|