aboutsummaryrefslogtreecommitdiffstats
path: root/github3/models.py
blob: c049aba801b042412f885cf528c6926fdc348cc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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