Initial commit, with 'host' server example.

Even that isn't quite complete, but I'm anxious to test other things..
This commit is contained in:
Lance Edgar 2015-11-15 20:22:01 -06:00
commit cf06a1987d
17 changed files with 571 additions and 0 deletions

6
fabdemo/__init__.py Normal file
View file

@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
"""
Rattail Fabric Demo
"""
from ._version import __version__

3
fabdemo/_version.py Normal file
View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
__version__ = u'0.1.0'