This commit is contained in:
Jacob Magar
2025-08-12 11:35:00 -04:00
parent 8fbec924cd
commit 493a376640
34 changed files with 525 additions and 1564 deletions

View File

@@ -6,7 +6,7 @@ the modular server implementation from unraid_mcp.server.
"""
def main():
def main() -> None:
"""Main entry point for the Unraid MCP Server."""
try:
from .server import run_server
@@ -19,4 +19,4 @@ def main():
if __name__ == "__main__":
main()
main()