summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index d288331..0076290 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,7 +4,9 @@ use hound::{SampleFormat, WavReader};
use std::path::PathBuf;
mod decoder;
+mod generator;
use decoder::MorseDecoder;
+pub use generator::MorseGenerator;
const TARGET_SAMPLE_RATE: u32 = 12000; // Same as ggmorse's kBaseSampleRate
const CHUNK_SIZE: usize = 4096;