gitent-server 0.1.0

Server for gitent - file watching and API
Documentation
1
2
3
4
5
6
7
8
9
10
//! # gitent-server
//!
//! Server component for gitent that watches files and provides an API for agents.

pub mod api;
pub mod server;
pub mod watcher;

pub use server::GitentServer;
pub use watcher::FileWatcher;