Files
appks/lib.rs
T
zhenyi 1000f8a80d chore(infra): add gRPC layer, update protobufs, remove immediate module
- Add gRPC service modules: auth, channel, channel settings, member,
  permission
- Update protobuf definitions and generated code
- Remove immediate/ real-time module (superseded by IM service)
- Update etcd discovery and registration
- Update cache, error, config, and build infrastructure
- Add ADR documentation
- Update OpenAPI spec
2026-06-10 18:49:42 +08:00

13 lines
181 B
Rust

pub mod api;
pub mod cache;
pub mod config;
pub mod error;
pub mod etcd;
pub mod grpc;
pub mod models;
pub mod pb;
pub mod queue;
pub mod service;
pub mod session;
pub mod storage;