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