diff options
author | 2011-04-13 18:16:21 -0400 | |
---|---|---|
committer | 2011-04-13 18:16:21 -0400 | |
commit | 53c42a9fae94c26b52360398955a617976a176c3 (patch) | |
tree | 21d1eea32bdf8446ff228ee0167fde17c645fdfc /github3/core.py | |
parent | gitignore (diff) | |
download | python-github3-53c42a9fae94c26b52360398955a617976a176c3.tar.xz python-github3-53c42a9fae94c26b52360398955a617976a176c3.zip |
simple core
Diffstat (limited to 'github3/core.py')
-rw-r--r-- | github3/core.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/github3/core.py b/github3/core.py new file mode 100644 index 0000000..65b6ca0 --- /dev/null +++ b/github3/core.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +""" +github3.core +~~~~~~~~~~~~ + +This module contains the core GitHub 3 interface. + +""" + + +class GitHub(object): + pass + + def __init__(self): + pass
\ No newline at end of file |