go/svc: finish porting services to Bazel

The following services were never ported:
 - cmc-proxy
 - arista-proxy
 - m6220-proxy
 - topo

They now build.

Change-Id: I0688bfe43cdff946e6662e21969ef539382c0e86
diff --git a/go/svc/topo/proto/topo.proto b/go/svc/topo/proto/topo.proto
new file mode 100644
index 0000000..3f6e404
--- /dev/null
+++ b/go/svc/topo/proto/topo.proto
@@ -0,0 +1,35 @@
+syntax = "proto3";
+
+package topo;
+option go_package = "code.hackerspace.pl/hscloud/go/svc/topo/proto";
+
+message Config {
+    repeated Switch switch = 1;
+    repeated Machine machine = 2;
+};
+
+message Switch {
+    string name = 1;
+    string control_address = 2;
+    message SwitchPort {
+        string name = 1;
+    };
+    repeated SwitchPort managed_port = 3;
+    message Segment {
+        enum Type {
+            TYPE_INVALID = 0;
+            TYPE_VLAN = 1;
+        }
+        Type segment_type = 1;
+        int32 vlan_id = 2;
+    };
+    repeated Segment available_segment = 4;
+};
+
+message Machine {
+    string name = 1;
+    message Port {
+        string name = 1;
+    };
+    repeated Port managed_port = 2;
+};