File size: 243 Bytes
cf2059c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from handler import EndpointHandler

# Initialize the handler
handler = EndpointHandler()

# Sample payload
payload = {"fighter1": "Conor McGregor", "fighter2": "Khabib Nurmagomedov"}

# Run the handler
result = handler(payload)
print(result)