//! Shared library crate for the issue tracker.
//!//! This exposes the modules so that integration tests (future work) can
//! exercise the same code paths as the binary.
pubmodauth;pubmodconfig;pubmoddb;pubmoderror;pubmodhandlers;pubmodmodels;pubmodviews;usesqlx::SqlitePool;/// Application state shared with every handler.
#[derive(Clone)]pubstructAppState{pubdb: SqlitePool,
pubjwt_secret: String,
}