15 lines
No EOL
579 B
Python
15 lines
No EOL
579 B
Python
#+------------------------------------------------------------------+
|
|
#| Imports |
|
|
#+------------------------------------------------------------------+
|
|
from .Comands.Gestion import *
|
|
from .Comands.Consultas import *
|
|
from .Comands.Setup import *
|
|
|
|
#+------------------------------------------------------------------+
|
|
#| Entry Point |
|
|
#+------------------------------------------------------------------+
|
|
def main():
|
|
tsndep()
|
|
|
|
if __name__ == '__main__':
|
|
tsndep() |