Add sqlite database

This commit is contained in:
2024-03-24 17:12:31 +01:00
parent 1eba31a03f
commit d0a8306a20
3 changed files with 56 additions and 1 deletions

View File

@@ -1,7 +1,11 @@
mod database;
mod player;
mod userinterface;
fn main() {
use tokio;
#[tokio::main]
async fn main() {
let player = player::MprisPlayer::new().expect("Could not create player");
let (usernumber, userrating) = userinterface::get_user_rating().expect("Lala");