mirror of
https://github.com/JonasunderscoreJones/jonas_jones-api.git
synced 2025-10-23 00:59:18 +02:00
9 lines
No EOL
192 B
Rust
9 lines
No EOL
192 B
Rust
use warp::Filter;
|
|
|
|
mod mods;
|
|
|
|
use mods::get_mods_paths;
|
|
|
|
pub fn get_minecraft_paths() -> impl warp::Filter<Extract = impl warp::Reply, Error = warp::Rejection> + Clone {
|
|
get_mods_paths()
|
|
} |