chore: add snapshot CLI binary and lib re-export

This commit is contained in:
Nikketryhard
2026-02-14 04:04:47 -06:00
parent ee6fce12a7
commit 725bdb4e9a
2 changed files with 6 additions and 0 deletions

3
src/bin/snapshot.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
antigravity_proxy::snapshot::run_cli();
}

3
src/lib.rs Normal file
View File

@@ -0,0 +1,3 @@
//! Antigravity proxy library — shared modules for main proxy and tools.
pub mod snapshot;