Skip to main content

tengu_api/tasks/
mod.rs

1//! Task definitions and claim logic. Single source of truth for tiers and rewards.
2
3mod collection;
4mod dine;
5mod forge;
6mod recruit;
7
8pub use collection::check as check_collection;
9pub use dine::{next_claimable as next_dine_claimable, DINE_TIERS};
10pub use forge::{next_claimable as next_forge_claimable, FORGE_TIERS};
11pub use recruit::{next_claimable as next_recruit_claimable, RECRUIT_TIERS};