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 mission;
7mod recruit;
8
9pub use collection::{check as check_collection, collection_index};
10pub use dine::{next_claimable as next_dine_claimable, DINE_TIERS};
11pub use forge::{next_claimable as next_forge_claimable, FORGE_TIERS};
12pub use mission::{next_claimable as next_mission_claimable, MISSION_TIERS};
13pub use recruit::{next_claimable as next_recruit_claimable, RECRUIT_TIERS};