feat: Se crea diferenciación de tipos de llamadas
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2023-08-03 19:01:05 +00:00
parent 9fd4567dbe
commit 56def869ee
3 changed files with 16 additions and 2 deletions

9
Util/call_types.py Normal file
View File

@@ -0,0 +1,9 @@
class CallTypes():
@staticmethod
def get_call_types():
call_types = [
('first_call', 'First call'),
('followup_call', 'Follow up call'),
]
return call_types