From 73afb0c9e28f17f6668ea2c2734349f065023b09 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 25 Sep 2023 06:04:25 -0500 Subject: [PATCH] adding the song_editor.rs file This will eventually hold the logic for the SongEditor.qml file --- src/rust/songs/song_editor.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/rust/songs/song_editor.rs b/src/rust/songs/song_editor.rs index 8316b23..e5e25f6 100644 --- a/src/rust/songs/song_editor.rs +++ b/src/rust/songs/song_editor.rs @@ -1 +1,6 @@ -mod song_editor; +mod song_editor { + pub enum Yes { + Yes, + No, + } +}