From 227e2fa9ec3c7dd73462503d1b07d5ee4dbdcc6c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 12 Aug 2011 19:25:22 -0400 Subject: [PATCH] basics --- resources/__init__.py | 1 + resources/core.py | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 resources/__init__.py create mode 100644 resources/core.py diff --git a/resources/__init__.py b/resources/__init__.py new file mode 100644 index 0000000..5d20240 --- /dev/null +++ b/resources/__init__.py @@ -0,0 +1 @@ +from core import * \ No newline at end of file diff --git a/resources/core.py b/resources/core.py new file mode 100644 index 0000000..e6b51c6 --- /dev/null +++ b/resources/core.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- + +""" +resources.core +~~~~~~~~~~~~~~ + +This omdule provides the core resources system. + +""" \ No newline at end of file