Change api folder to wrappers

This commit is contained in:
Luke Harding 2024-04-30 17:42:58 -04:00
parent 9d264ecbf4
commit 41a7eb90c5
3 changed files with 3 additions and 2 deletions

View File

@ -13,10 +13,10 @@
use colored::{ColoredString, Colorize};
use apis::pacman;
use wrappers::pacman;
mod apis;
mod shell_commands;
mod wrappers;
fn main() {
println!("{}", copyright_notice());

View File

@ -1 +1,2 @@
pub mod pacman;
mod paru;