Spike of football fixture lookup.

This commit is contained in:
Rob Holland
2025-02-03 17:34:42 +00:00
parent b125548844
commit 879abade05
6 changed files with 167 additions and 19 deletions

View File

@@ -1,4 +1,5 @@
from .find_events import find_events
from .find_fixtures import find_fixtures
from .search_flights import search_flights
from .create_invoice import create_invoice
@@ -6,6 +7,8 @@ from .create_invoice import create_invoice
def get_handler(tool_name: str):
if tool_name == "FindEvents":
return find_events
if tool_name == "FindFixtures":
return find_fixtures
if tool_name == "SearchFlights":
return search_flights
if tool_name == "CreateInvoice":