qlue-ls 2.8.0

A language server for SPARQL
Documentation
use crate::server::{
    configuration::BackendConfiguration,
    lsp::{LspMessage, rpc::NotificationMessageBase},
};
use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, PartialEq)]
pub struct AddBackendNotification {
    #[serde(flatten)]
    pub base: NotificationMessageBase,
    pub params: BackendConfiguration,
}

impl LspMessage for AddBackendNotification {}

#[derive(Debug, Serialize, Deserialize, PartialEq, Clone)]
pub enum SparqlEngine {
    QLever,
    GraphDB,
    Virtuoso,
    MillenniumDB,
    Blazegraph,
    Jena,
}