feature(gui): first basic attempt for a gui frontend in flutter

This commit is contained in:
Patryk Hegenberg 2024-05-15 19:46:48 +02:00
parent 9db004472a
commit 113e1cfe53
147 changed files with 6011 additions and 34 deletions

View file

@ -0,0 +1,17 @@
syntax = "proto3";
package ressource;
// [RINF:DART-SIGNAL]
message Files {
repeated string filenames = 1;
string relay = 2;
}
// [RINF:RUST-SIGNAL]
message Name { string rand_name = 1; }
// [RINF:DART-SIGNAL]
message TransferName {
string relay = 1;
string transfer_name = 2;
}