File size: 520 Bytes
7c26280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""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"
    }
}