feat: Add call results
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-08-04 07:11:38 -05:00
parent e6735a88d6
commit 2f35253682
3 changed files with 26 additions and 1 deletions

9
Util/call_results.py Normal file
View File

@@ -0,0 +1,9 @@
class CallResults():
@staticmethod
def get_call_results():
call_results = [
('missed_call', 'Missed call'),
('answered_call', 'Answered call'),
]
return call_results