1// SPDX-FileCopyrightText: 2024 Łukasz Niemier <#@hauleth.dev> 2// 3// SPDX-License-Identifier: EUPL-1.2 4 5pub mod config; 6pub mod output; 7pub mod sources; 8 9pub fn fuk(config: config::Config) -> output::Output { 10 config.fetch().unwrap() 11}