1 2 3 4 5 6 7 8 9
// Copyright 2022-2024 Gabriel Bjørnager Jensen. use crate::App; impl App { pub fn run(self) -> Result<(), i32> { Ok(()) } }