AiBarber / config /services.py
SyedBasitAbbas's picture
Upload 14 files
7c26280 verified
raw
history blame contribute delete
520 Bytes
"""Service configuration for the barber booking system."""
SERVICE_MAPPING = {
"haircut": {
"price": 25,
"duration": 35,
"description": "Classic haircut service including wash and style"
},
"beard trim": {
"price": 15,
"duration": 25,
"description": "Professional beard trimming and shaping"
},
"full service": {
"price": 35,
"duration": 60,
"description": "Complete package including haircut, beard trim, and styling"
}
}