8 lines
270 B
Plaintext
8 lines
270 B
Plaintext
|
|
//! Base work schedule — the foundation all other schedules modify
|
||
|
|
|
||
|
|
schedule WorkWeek {
|
||
|
|
block morning_routine { 07:00 -> 08:00, action:MorningRoutine }
|
||
|
|
block work { 09:00 -> 17:00, action:DailyWork }
|
||
|
|
block evening_rest { 18:00 -> 22:00, action:Resting }
|
||
|
|
}
|