Initial Commit

This commit is contained in:
helldh 2026-02-27 23:18:40 +03:00
commit 18d456bf2e
20 changed files with 1442 additions and 0 deletions

8
main.py Normal file
View file

@ -0,0 +1,8 @@
from composer import Composer
def main():
composer = Composer()
composer.run()
if __name__ == "__main__":
main()