mirror of
https://github.com/YuzuZensai/Zen-Sync.git
synced 2026-01-31 14:58:54 +00:00
✨ feat: first release
This commit is contained in:
16
zensync.py
Normal file
16
zensync.py
Normal 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()
|
||||
Reference in New Issue
Block a user