diff options
| author | 2011-11-01 12:30:25 +0100 | |
|---|---|---|
| committer | 2011-11-01 12:30:25 +0100 | |
| commit | b17dbea56f59aa5403e5722e12878c7183742551 (patch) | |
| tree | ea02535e78ae2c59d9099850e5ab2d4b1d044f10 /github3/models/__init__.py | |
| parent | Wip on handlers (diff) | |
| download | python-github3-b17dbea56f59aa5403e5722e12878c7183742551.tar.xz python-github3-b17dbea56f59aa5403e5722e12878c7183742551.zip | |
Decouple Handlers and Models
Handler User complete
Diffstat (limited to 'github3/models/__init__.py')
| -rw-r--r-- | github3/models/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/github3/models/__init__.py b/github3/models/__init__.py index e69de29..6e4db1b 100644 --- a/github3/models/__init__.py +++ b/github3/models/__init__.py @@ -0,0 +1,4 @@ +from .user import AuthUser, User +from .repos import Repo +from .orgs import Org +from .gists import Gist |
