sql5 3.5.0

SQLite compatible database with CJK FTS5 full-text search
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Interface 模組:使用者介面層
//!
//! 目前包含:
//!   - `repl`:互動式命令列(REPL)
//!   - `server`:Server mode(JSON over stdin/stdout)
//!   - `websocket`:WebSocket server mode

pub mod repl;
pub use repl::Repl;

pub mod server;
pub use server::Server;

pub mod websocket;
pub use websocket::WsServer;