initial commit of finplan - works, with basic csv dump, need to remove unneeded variables, reformat and improve csv next

This commit is contained in:
2025-01-30 16:23:05 +11:00
commit 01d373e731
1355 changed files with 249815 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from __future__ import annotations
from .base import ANY
from .base import default_namespace
from .base import NamedSignal
from .base import Namespace
from .base import Signal
from .base import signal
__all__ = [
"ANY",
"default_namespace",
"NamedSignal",
"Namespace",
"Signal",
"signal",
]