repo-quest 0.3.4

Interactive programming tutorials via Github.
Documentation
1
2
3
4
5
6
7
use eyre::Result;

#[tokio::main]
async fn main() -> Result<()> {
  repo_quest::init_globals()?;
  repo_quest::cli::main().await
}