basic models

This commit is contained in:
Kenneth Reitz
2011-04-13 19:13:19 -04:00
parent c1e387d83b
commit 82c1cf1acf
+34
View File
@@ -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