stacktach-winchester/winchester/trigger_manager.py
Monsyne Dragon aa8fb55e87 Initial commit of DB schema.
Initial commit of the event schema for the database.
This includes models and alembic migration.
2014-06-26 01:55:26 +00:00

9 lines
182 B
Python

from winchester.db import DBInterface
class TriggerManager(object):
def __init__(self, config):
self.config = config
self.db = DBInterface(config['database'])