wip: refactor

This commit is contained in:
Tim Bendt
2025-07-01 22:24:34 -04:00
parent bec09bade8
commit 5232bf3b09
66 changed files with 842 additions and 165 deletions

10
main.py
View File

@@ -1,6 +1,10 @@
def main():
print("Hello from gtd-terminal-tools!")
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
from src.cli import cli
if __name__ == "__main__":
main()
cli()