From 6a762589e2f557cb1b2096c6e8d888129c3e2fca Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Tue, 12 Nov 2024 20:53:18 +0100 Subject: basic routing for songs --- src/routes.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/routes.rs') diff --git a/src/routes.rs b/src/routes.rs index e69de29..6195f32 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -0,0 +1,9 @@ +use serde::Serialize; + +pub mod song; + +#[derive(Serialize)] +pub struct Song { + name: Option, + lyrics: Option, +} -- cgit v1.2.3