lsp_bin/lib.rs
#![doc(
html_logo_url = "https://ajuvercr.github.io/semantic-web-lsp/assets/icons/favicon.png",
html_favicon_url = "https://ajuvercr.github.io/semantic-web-lsp/assets/icons/favicon.ico"
)]
use std::ops::Range;
pub mod client;
pub use client::TowerClient;
#[derive(Debug, PartialEq, Clone, Hash, Eq)]
pub struct Error {
pub msg: String,
pub span: Range<usize>,
}