dots/.config/awesome/quarrel/native/src/sound.rs
2023-04-12 00:21:03 +02:00

18 lines
231 B
Rust

use std::{
fs::File,
io::BufReader,
path::Path,
time::Duration,
};
use mlua::prelude::*;
use rodio::{
Decoder,
OutputStream,
Sink,
};
pub fn play_sound(_: &Lua, file: String) -> LuaResult<()> {
}