15 lines
324 B
Rust
15 lines
324 B
Rust
pub mod constants;
|
|
pub mod error;
|
|
pub mod hardware;
|
|
pub mod model_registry;
|
|
pub mod paths;
|
|
pub mod process_watch;
|
|
pub mod recommendation;
|
|
pub mod types;
|
|
|
|
pub use error::{KonError, Result};
|
|
pub use types::{
|
|
AudioSamples, DownloadProgress, EngineName, Megabytes, ModelId, Segment, Transcript,
|
|
TranscriptionOptions,
|
|
};
|