mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
7 lines
100 B
Python
7 lines
100 B
Python
from app import db
|
|
|
|
|
|
def dao_create_event(event):
|
|
db.session.add(event)
|
|
db.session.commit()
|