9 lines
183 B
Python
9 lines
183 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
"""数据模型"""
|
||
|
|
|
||
|
|
from .content import PosterContent
|
||
|
|
from .theme import Theme, THEMES
|
||
|
|
|
||
|
|
__all__ = ['PosterContent', 'Theme', 'THEMES']
|