Files
storybook/examples/baker-family/schedules/base_schedule.sb

8 lines
270 B
Plaintext
Raw Normal View History

//! 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 }
}