mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-11 10:28:55 -04:00
8 lines
153 B
Python
8 lines
153 B
Python
from app import db
|
|
from app.dao.dao_utils import transactional
|
|
|
|
|
|
@transactional
|
|
def dao_create_inbound_sms(inbound_sms):
|
|
db.session.add(inbound_sms)
|