cic-internal-integration/apps/cic-ussd/cic_ussd/account/maps.py

21 lines
230 B
Python
Raw Normal View History

2021-08-06 18:29:01 +02:00
# standard imports
# external imports
# local imports
def gender():
return {
'1': 'male',
'2': 'female',
'3': 'other'
}
def language():
return {
'1': 'en',
'2': 'sw'
}