feat: first release

This commit is contained in:
2025-05-24 22:46:35 +07:00
commit 9c6d9c491f
8 changed files with 1378 additions and 0 deletions

16
zensync.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import logging
from cli import run_cli
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
def main():
"""Main entry point"""
run_cli()
if __name__ == "__main__":
main()