"""Utility functions for the database module.""" from enum import Enum class SortOrder(Enum): ASC = 1 DESC = 2