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

from pyrin.api.router.decorators import api, post, put, patch, delete

import {PACKAGE_FULL_NAME}.services as {PACKAGE_ALIAS}_services


# Usage:
# you could implement different api functions here and call corresponding service method this way:
# return {PACKAGE_ALIAS}_services.method_name(*arg, **kwargs)
