Merge pull request #8 from jlowin/cli

Clean up cli imports
This commit is contained in:
Jeremiah Lowin 2024-11-30 14:58:32 -05:00 committed by GitHub
commit 8a1237bdbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 7 deletions

View file

@ -1,6 +0,0 @@
"""FastMCP CLI tools."""
from .cli.cli import app
if __name__ == "__main__":
app()

View file

@ -2,4 +2,6 @@
from .cli import app
__all__ = ["app"]
if __name__ == "__main__":
app()