fix several panics

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel
2022-08-31 22:49:45 +02:00
parent 2be9f65a16
commit aa128756ad
12 changed files with 142 additions and 130 deletions

View File

@@ -1,6 +1,6 @@
syntax = "proto3";
package wice;
package wice.core;
option go_package = "riasc.eu/wice/pkg/proto/core";
import "common.proto";

View File

@@ -1,6 +1,6 @@
syntax = "proto3";
package wice;
package wice.core;
option go_package = "riasc.eu/wice/pkg/proto/core";
import "common.proto";

View File

@@ -7,7 +7,7 @@ import "common.proto";
import "core/interface.proto";
message StatusResp {
repeated Interface interfaces = 1;
repeated core.Interface interfaces = 1;
}
message StatusParams {