Skip to repository content28 lines · 579 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:58:33.871Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
lsp_adapter.rs
1use gpui_shared_string::SharedString;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Debug, PartialEq, Eq)]
5pub enum LanguageServerStatusUpdate {
6 Binary(BinaryStatus),
7 Health(ServerHealth, Option<SharedString>),
8}
9
10#[derive(Debug, PartialEq, Eq, Deserialize, Serialize, Clone, Copy)]
11#[serde(rename_all = "camelCase")]
12pub enum ServerHealth {
13 Ok,
14 Warning,
15 Error,
16}
17
18#[derive(Clone, Debug, PartialEq, Eq)]
19pub enum BinaryStatus {
20 None,
21 CheckingForUpdate,
22 Downloading,
23 Starting,
24 Stopping,
25 Stopped,
26 Failed { error: String },
27}
28