diff options
| author | 2024-02-28 12:09:56 +0800 | |
|---|---|---|
| committer | 2024-02-28 12:09:56 +0800 | |
| commit | 8793ecea74706aedb4674434f65ef9d05850b769 (patch) | |
| tree | 425fcec75d4f899760a0919fa0604327b20309f9 /nivis_python/__init__.py | |
| parent | ab026b7e0ba3baa1ffab7603e7f5fa47864427f7 (diff) | |
| download | TRPGNivis-8793ecea74706aedb4674434f65ef9d05850b769.tar.gz TRPGNivis-8793ecea74706aedb4674434f65ef9d05850b769.zip | |
refactor(bones)!: rename nivis-python -> nivis_python
Diffstat (limited to 'nivis_python/__init__.py')
| -rw-r--r-- | nivis_python/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nivis_python/__init__.py b/nivis_python/__init__.py new file mode 100644 index 0000000..943368b --- /dev/null +++ b/nivis_python/__init__.py @@ -0,0 +1,12 @@ +"""nivis + +@TODO Lexer support +@BODY Lex function. +""" + +__all__ = ["Execution", "Interpreter", "Lexer", "Parser"] + +from .execution import Execution +from .interpreter import Interpreter +from .lexer import Lexer +from .parsers import Parser |
