""" Logic for currency operations. Provides logic for getting curency. """ from ows_accounting.models import currency def get_currency_by_id(currency_id): """Get currency by id Args: currency_id (int): currency id. Returns response.Response: Containing the currency details """ return currency.get_currency_by_id(currency_id)