add icons
This commit is contained in:
@@ -9,6 +9,7 @@ name = "signed"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
assets = { path = "../crates/assets" }
|
||||
paths = { path = "../crates/paths" }
|
||||
signed_state = { path = "../crates/signed_state" }
|
||||
workspace = { path = "../crates/workspace" }
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
use std::sync::Arc;
|
||||
|
||||
use assets::Assets;
|
||||
use gpui::*;
|
||||
use gpui_platform::application;
|
||||
|
||||
@@ -8,8 +9,13 @@ fn main() {
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
application()
|
||||
.with_assets(Assets)
|
||||
.with_http_client(Arc::new(reqwest_client::ReqwestClient::new()))
|
||||
.run(move |cx| {
|
||||
// Set app identity
|
||||
cx.set_app_identity("su.reya.signed", "Signed");
|
||||
|
||||
// Initialize components
|
||||
gpui_component::init(cx);
|
||||
|
||||
// Initialize backend and stores (connects relays, restores session)
|
||||
|
||||
Reference in New Issue
Block a user