
Initial commit of the event schema for the database. This includes models and alembic migration.
9 lines
182 B
Python
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'])
|