forked from purplebored/purplebored.pl
10 lines
158 B
Python
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",)
|