diff options
Diffstat (limited to 'github3/models.py')
-rw-r--r-- | github3/models.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/github3/models.py b/github3/models.py index e69de29..c049aba 100644 --- a/github3/models.py +++ b/github3/models.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- + +""" +github3.models +~~~~~~~~~~~~~~ + +This module provides the GitHub3 object models. + +""" + + + +class Repo(object): + """GitHub Repository.""" + pass + + + +class Gist(object): + """GitHub Gist. + + gist.files['filename.py'] + """ + + def __init__(self): + pass + + + +class GistComment(object): + """GitHub GistComment.""" + + def __init__(self): + pass
\ No newline at end of file |