feat: connect to github step

This commit is contained in:
2026-04-25 00:49:50 +01:00
parent a9f4d1d923
commit a54cc84660
12 changed files with 450 additions and 122 deletions

View File

@@ -8,6 +8,7 @@ mod asset;
mod colors;
mod component;
mod dashboard;
mod http;
mod query;
mod screen;
mod storage;
@@ -25,6 +26,9 @@ fn main() {
gpui::Application::new()
.with_assets(asset::Asset)
.with_http_client(std::sync::Arc::new(http::Client::new(
reqwest::Client::new(),
)))
.run(setup_application);
}