2
0
Fork 0
textout/textoutpc/__init__.py

13 lines
214 B
Python
Raw Normal View History

2018-01-02 18:57:04 +01:00
#!/usr/bin/env python3
""" Functions for the user.
Really simplifies the thing.
"""
2018-02-11 21:31:39 +01:00
from .functions import tohtml, tolightscript
2018-02-12 08:32:02 +01:00
__all__ = ["version", "tohtml", "tolightscript"]
version = "0.1"
2018-01-02 18:57:04 +01:00
# End of file.