summaryrefslogtreecommitdiff
path: root/src/routes.rs
blob: 6195f325588d5bbe81602c651a790881f2a59fd9 (plain)
1
2
3
4
5
6
7
8
9
use serde::Serialize;

pub mod song;

#[derive(Serialize)]
pub struct Song {
    name: Option<String>,
    lyrics: Option<String>,
}