dots/.config/awesome/quarrel/native/src/sound.rs

18 lines
231 B
Rust
Raw Normal View History

2023-04-11 17:21:03 -05:00
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<()> {
}