Have burrow gtk use new rpc

This commit is contained in:
dav 2024-07-13 14:04:59 -07:00
parent 3dedca4de3
commit 827f0e65dc
10 changed files with 364 additions and 1621 deletions

View file

@ -1,6 +1,5 @@
use super::*;
use adw::prelude::*;
use burrow::{DaemonClient, DaemonCommand, DaemonResponseData};
use gtk::Align;
use relm4::{
component::{
@ -12,6 +11,12 @@ use relm4::{
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;