codeinput 0.1.0

A powerful library for parsing, analyzing, and managing CODEOWNERS files. Provides advanced querying capabilities, ownership analysis, and tag-based file organization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Language Server Protocol (LSP) implementation for CODEOWNERS integration
//!
//! This module provides an LSP server that integrates with the codeinput CLI
//! to provide real-time CODEOWNERS information in editors like VS Code, Neovim, etc.

pub mod commands;
pub mod handlers;
pub mod server;
pub mod types;

pub use server::LspServer;