Initial upload of ConfSync project
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-04 20:00:27 +00:00
parent bd50974e0d
commit 060a823ea7

9
app/confsync/main.py Normal file
View File

@@ -0,0 +1,9 @@
import typer
from confsync.cli.main import app
def main():
"""Main entry point for ConfSync."""
app()
if __name__ == "__main__":
main()