Files
purplebored.pl/src/pbpl/models/__init__.py
2025-10-23 20:38:04 +03:00

10 lines
158 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Models"""
from typing import Tuple
from .text import TextModel
__all__: Tuple[str, ...] = ("TextModel",)