iro/model/__init__.py
author Sandro Knauß <knauss@netzguerilla.net>
Fri, 10 Aug 2012 13:40:46 +0200
branchdevel
changeset 289 dd610c9d6a12
parent 263 52284710c0b4
child 294 0e75bd39767d
permissions -rw-r--r--
setup.py: also installs twisted plugin

"""The model pakcage represents all data, that is stored either in database or in objects.

before using the model, you have to use, you have to set the Engine with :func:`dbdefer.setEngine` and set the Threadpool with :func:`dbdefer.setPool` (see :func:`iro.main.runReactor` for initalizing this module).
"""

import schema
import user
import utils
import job
import offer

from dbdefer import setEngine
from pool import setPool