cic-stack/apps/cic-ussd/cic_ussd/account/maps.py

21 lines
230 B
Python

# standard imports
# external imports
# local imports
def gender():
return {
'1': 'male',
'2': 'female',
'3': 'other'
}
def language():
return {
'1': 'en',
'2': 'sw'
}