9 lines
122 B
Python
9 lines
122 B
Python
"""Utility functions for the database module."""
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class SortOrder(Enum):
|
|
ASC = 1
|
|
DESC = 2
|