Files
python-github3/github3/models.py
T
Kenneth Reitz 82c1cf1acf basic models
2011-04-13 19:13:19 -04:00

34 lines
391 B
Python

# -*- 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