17 lines
364 B
Rust
17 lines
364 B
Rust
#![deny(warnings)]
|
|
#![deny(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]
|
|
#![allow(clippy::missing_errors_doc, clippy::multiple_crate_versions)]
|
|
|
|
pub mod app;
|
|
pub mod config;
|
|
pub mod domain;
|
|
pub mod error;
|
|
pub mod pokemon;
|
|
pub mod service;
|
|
pub mod translation;
|
|
|
|
#[must_use]
|
|
pub const fn crate_name() -> &'static str {
|
|
env!("CARGO_PKG_NAME")
|
|
}
|