# -*- coding: utf-8 -*-
"""
{PACKAGE_TITLE} services module.
"""

from pyrin.application.services import get_component

from {PACKAGE_FULL_NAME} import {PACKAGE_CLASS_NAME}Package


# Usage:
# you could implement different services here and call corresponding manager method this way:
# return get_component({PACKAGE_CLASS_NAME}Package.COMPONENT_NAME).method_name(*arg, **kwargs)
