This commit is contained in:
helldh 2025-12-25 21:44:30 +03:00
commit 3c2137da2b
9 changed files with 737 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()