1 2 3 4 5 6 7 8 9
#![forbid(unsafe_code)] #![deny(clippy::all)] mod cli; /// Start of the DF Storyteller CLI application. fn main() -> std::io::Result<()> { cli::main() }
1 2 3 4 5 6 7 8 9
#![forbid(unsafe_code)] #![deny(clippy::all)] mod cli; /// Start of the DF Storyteller CLI application. fn main() -> std::io::Result<()> { cli::main() }