burrow/burrow-gtk/src/components/mod.rs
2024-07-13 16:54:57 -07:00

27 lines
567 B
Rust

use super::*;
use adw::prelude::*;
use gtk::Align;
use relm4::{
component::{
worker::{Worker, WorkerController},
AsyncComponent, AsyncComponentController, AsyncComponentParts, AsyncComponentSender,
AsyncController,
},
prelude::*,
};
use std::sync::Arc;
use tokio::sync::Mutex;
pub mod burrow_rpc {
tonic::include_proto!("burrow");
}
use burrow_rpc::tunnel_client;
use tonic::transport::Channel;
mod app;
mod settings;
mod settings_screen;
mod switch_screen;
pub use app::*;
pub use settings::{DaemonGroupMsg, DiagGroupMsg};