Files
confsync/app/confsync/main.py
7000pctAUTO 060a823ea7
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
Initial upload of ConfSync project
2026-02-04 20:00:27 +00:00

9 lines
149 B
Python

import typer
from confsync.cli.main import app
def main():
"""Main entry point for ConfSync."""
app()
if __name__ == "__main__":
main()