16 lines
355 B
Python
16 lines
355 B
Python
|
|
"""
|
||
|
|
Database models for POS Integration Service
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .pos_config import POSConfiguration
|
||
|
|
from .pos_transaction import POSTransaction, POSTransactionItem
|
||
|
|
from .pos_webhook import POSWebhookLog
|
||
|
|
from .pos_sync import POSSyncLog
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"POSConfiguration",
|
||
|
|
"POSTransaction",
|
||
|
|
"POSTransactionItem",
|
||
|
|
"POSWebhookLog",
|
||
|
|
"POSSyncLog"
|
||
|
|
]
|