strip all comments, extract tests to tests/ dirs, remove #[allow(clippy::...)], extract magic numbers to constants, refactor schedule engine private methods to use param structs, add Default impls, clippy.toml for persistence constructors
27 lines
869 B
Rust
27 lines
869 B
Rust
pub mod activity;
|
|
pub mod auth;
|
|
pub mod channel;
|
|
pub mod events;
|
|
pub mod library;
|
|
pub mod media;
|
|
pub mod provider_config;
|
|
pub mod schedule;
|
|
pub mod settings;
|
|
pub mod transcode;
|
|
pub mod user;
|
|
|
|
pub use activity::{ActivityLogCommand, ActivityLogQuery};
|
|
pub use auth::AuthService;
|
|
pub use channel::{ChannelCommand, ChannelQuery};
|
|
pub use events::{DomainEvent, EventConsumer, EventHandler, EventPublisher};
|
|
pub use library::{LibraryCommand, LibraryQuery, LibrarySyncAdapter};
|
|
pub use media::{
|
|
Collection, IMediaProvider, IProviderRegistry, ProviderCapabilities, SeriesSummary,
|
|
StreamQuality, StreamingProtocol,
|
|
};
|
|
pub use provider_config::{ProviderConfigCommand, ProviderConfigQuery};
|
|
pub use schedule::{ScheduleCommand, ScheduleQuery};
|
|
pub use settings::AppSettingsRepository;
|
|
pub use transcode::TranscodeSettingsRepository;
|
|
pub use user::{UserCommand, UserQuery};
|