7 lines
193 B
Python
7 lines
193 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# All rights reserved.
|
|
"""Billing service module."""
|
|
|
|
from .mainServiceBilling import BillingService, getService
|
|
|
|
__all__ = ["BillingService", "getService"]
|