#![cfg_attr(coverage_nightly, coverage(off))]
pub mod core_handlers;
pub use core_handlers::{
handle_work_checkpoint, handle_work_complete, handle_work_continue, handle_work_falsify,
handle_work_init, handle_work_start, handle_work_status, handle_work_sync, run_quality_gates,
FalsificationResult, GitHubIssueInfo,
};
use crate::models::roadmap::ItemStatus;
use crate::services::roadmap_service::RoadmapService;
use anyhow::{Context, Result};
use std::path::{Path, PathBuf};
include!("ticket_handlers.rs");