mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 00:02:41 +10:00
Still needs a massive go-over because there shouldn't be anything referencing tauri in any of the workspaces except the original one. Process manager has been refactored as an example Signed-off-by: quexeky <git@quexeky.dev>
12 lines
220 B
Rust
12 lines
220 B
Rust
use serde::Serialize;
|
|
|
|
#[derive(Clone, Copy, Serialize, Eq, PartialEq)]
|
|
pub enum AppStatus {
|
|
NotConfigured,
|
|
Offline,
|
|
ServerError,
|
|
SignedOut,
|
|
SignedIn,
|
|
SignedInNeedsReauth,
|
|
ServerUnavailable,
|
|
} |