All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
10 lines
223 B
Python
10 lines
223 B
Python
class CallResults():
|
|
@staticmethod
|
|
def get_call_results():
|
|
call_results = [
|
|
('missed_call', 'Missed call'),
|
|
('answered_call', 'Answered call'),
|
|
]
|
|
|
|
return call_results
|