Initial commit

This commit is contained in:
2025-10-24 08:24:46 +00:00
commit 9b3e8ef8f4
13 changed files with 138 additions and 0 deletions

10
tests/test_main.py Normal file
View File

@@ -0,0 +1,10 @@
from src.main import main
import unittest
class TestMain(unittest.TestCase):
def test_main(self):
self.assertEqual(True, True)
if __name__ == '__main__':
unittest.main()