PyBase/tsn_utils/__init__.py

21 lines
760 B
Python
Raw Permalink Normal View History

2026-05-08 09:15:51 -05:00
#+------------------------------------------------------------------+
#| Imports |
#+------------------------------------------------------------------+
# Simple logger a su vez ya importa a Funciones
2026-05-09 06:56:40 -05:00
from .SimpleLogger import CLoggerBase
from . import Funciones
2026-05-08 09:15:51 -05:00
#+------------------------------------------------------------------+
#| General |
#+------------------------------------------------------------------+
2026-05-09 06:56:40 -05:00
__version__ = "1.0.1"
2026-05-08 09:15:51 -05:00
__author__ = "TradeSystemsNique"
__license__ = "Nique & Leo NL-NC"
__copyright__ = "Copyright 2025, TradeSystemsNique"
__all__ = [
2026-05-09 06:56:40 -05:00
'CLoggerBase',
2026-05-08 09:15:51 -05:00
'Funciones'
]