1a7f70ae1c
- Implement all 5 RPCs (Get, Update, Clear, Batch, Import) - Add MetadataServiceImpl with database integration - Add 10 comprehensive unit tests - All 19 tests pass, full workspace compiles
21 lines
561 B
Rust
21 lines
561 B
Rust
pub mod proto {
|
|
pub mod musicfs {
|
|
pub mod v1 {
|
|
tonic::include_proto!("musicfs.v1");
|
|
}
|
|
}
|
|
}
|
|
|
|
mod metadata;
|
|
mod search_service;
|
|
mod server;
|
|
mod webhook;
|
|
|
|
pub use metadata::MetadataServiceImpl;
|
|
pub use proto::musicfs::v1::metadata_service_server::MetadataServiceServer;
|
|
pub use proto::musicfs::v1::music_fs_server::{MusicFs, MusicFsServer as MusicFsGrpcServer};
|
|
pub use proto::musicfs::v1::*;
|
|
pub use search_service::SearchService;
|
|
pub use server::MusicFsServer;
|
|
pub use webhook::{WebhookConfig, WebhookHandler, WebhookPayload};
|