lyrics-core 0.4.0

Core types, traits, and helpers for lyrics processing
Documentation
1
2
3
4
5
6
7
8
9
10
//! 核心 trait 定义,包括歌词解析器、生成器和解密器接口。

pub mod decrypter;
pub mod generator;
pub mod parser;

pub use decrypter::DecryptError;
pub use decrypter::LyricsDecrypter;
pub use generator::LyricsGenerator;
pub use parser::LyricsParser;