diff options
Diffstat (limited to 'pygithub3/github.py')
-rw-r--r-- | pygithub3/github.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py index 9d9ca98..4941ffd 100644 --- a/pygithub3/github.py +++ b/pygithub3/github.py @@ -2,6 +2,7 @@ # -*- encoding: utf-8 -*- from pygithub3.services.users import User +from pygithub3.services.repos import Repo class Github(object): @@ -9,7 +10,12 @@ class Github(object): def __init__(self, **config): self._users = User(**config) + self._repos = Repo(**config) @property def users(self): return self._users + + @property + def repos(self): + return self._repos |