//! Module for various query implementations for the SQLite backend.
//!
//! Each submodule contains specific query logic used by the backend.
use StatType;
/// Fetch tasks by their IDs
/// Keep workers alive by updating their heartbeat
/// List available queues
/// List tasks in a specific queue
/// List workers
/// Metrics related queries
/// Re-enqueue orphaned tasks that were being processed by dead workers
/// Register a new worker in the database
/// Vacuum the database to optimize space
/// Wait for tasks to complete and stream their results
/// Convert a string representation of a stat type to the corresponding `StatType` enum variant