🧑‍💻 Passes fmt and clippy checks

This commit is contained in:
Manuel Cillero 2024-02-26 08:51:27 +01:00
parent 7367d37ec1
commit 12cd3df661
3 changed files with 10 additions and 4 deletions

View file

@ -20,6 +20,12 @@ use std::io::Error;
pub struct Application;
impl Default for Application {
fn default() -> Self {
Self::new()
}
}
impl Application {
/// Creates a new application instance without any package.
pub fn new() -> Self {