PyFlowery/pyflowery/__init__.py
cswimr 4becff70e6
Some checks failed
Actions / lint (push) Failing after 11s
Actions / build (push) Successful in 13s
version 1.0.0
2024-09-15 23:12:30 -04:00

12 lines
267 B
Python

from pyflowery.models import FloweryAPIConfig, Language, Result, Voice
from pyflowery.pyflowery import FloweryAPI
from pyflowery.version import version
__all__ = [
'FloweryAPI',
'FloweryAPIConfig',
'Result',
'Voice',
'Language',
'version',
]