blob: 75d4787dabd1d08b186ec3ff6a5bc025323299a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from cgitize.repo import BitbucketRepo, GithubRepo, Repo
MY_REPOS = (
GithubRepo('xyz'),
GithubRepo('foo/bar', user='test', via_ssh=False),
BitbucketRepo('xyz'),
BitbucketRepo('foo/bar', desc='Foo (Bar)'),
Repo('tmp/tmp', clone_url='https://example.com/tmp.git', owner='John Doe'),
)
|