Add converter modules (JSON, YAML, TOML, CSV)
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
15
src/main.py
Normal file
15
src/main.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""Main entry point for Data Format Converter."""
|
||||
|
||||
from rich.traceback import install
|
||||
|
||||
from src.cli import cli
|
||||
|
||||
|
||||
def main():
|
||||
"""Main entry point."""
|
||||
install(show_locals=False)
|
||||
cli()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user