mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 14:02:55 +00:00
* This way all clippy lints defined in the lib also cover the binary code. * It's much easier to detect unused code. * Fix all discovered lints.
8 lines
291 B
Rust
8 lines
291 B
Rust
//! All binaries have the body of their main() defined here, so that the code
|
|
//! is also covered by code style configs in lib.rs and the unused-code check is
|
|
//! more effective when practically all modules are private to the lib.
|
|
|
|
pub mod local_proxy;
|
|
pub mod pg_sni_router;
|
|
pub mod proxy;
|