[app-server] refactor: split API types into v1 and v2 (#6005)

Makes it easier to figure out which types are defined in the old vs. new
API schema.
This commit is contained in:
Owen Lin
2025-10-30 16:56:55 -07:00
committed by GitHub
parent a3d3719481
commit cdc3df3790
6 changed files with 1221 additions and 1290 deletions

View File

@@ -0,0 +1,6 @@
// Module declarations for the app-server protocol namespace.
// Exposes protocol pieces used by `lib.rs` via `pub use protocol::common::*;`.
pub mod common;
pub mod v1;
pub mod v2;