cog_task/server/page/
mod.rs

1mod activity;
2mod cleanup;
3mod loading;
4mod selection;
5mod startup;
6
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum Page {
9    Startup,
10    Selection,
11    Loading,
12    Activity,
13    CleanUp,
14}