Skip to main content

rq_core/
lib.rs

1//! The core functionality of the RepoQuest system.
2//!
3//! This is factored into its own crate so it can be reused by the RepoQuest Tauri binary and the rq-cli binary.
4
5mod command;
6pub mod git;
7pub mod github;
8pub mod package;
9pub mod quest;
10pub mod stage;
11mod template;
12mod utils;