use serde::Serialize; pub mod song; #[derive(Serialize)] pub struct Song { name: Option, lyrics: Option, }