Add POS service
This commit is contained in:
16
services/pos/app/models/__init__.py
Normal file
16
services/pos/app/models/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
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"
|
||||
]
|
||||
Reference in New Issue
Block a user