Files
status-app/test/e2e_appium/models/__init__.py
T
Mag. e94c79dc0a test(e2e_appium): add e2e_appium (#18366)
initial setup of test framework for new tablet and mobile builds
2025-08-19 14:50:36 +01:00

16 lines
295 B
Python

"""
Models package for E2E test data structures.
"""
from .user_model import User, UserProfile, CryptoWallet, WalletAddress
from .user_factory import UserFactory, UserType
__all__ = [
"User",
"UserProfile",
"CryptoWallet",
"WalletAddress",
"UserFactory",
"UserType",
]