From c8df91e8c989c91435c839efb4b78f14b0f3e730 Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Sun, 7 Jun 2015 11:31:48 -0700 Subject: [PATCH] nomad: adding response struct --- nomad/structs/structs.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 6610183e1..75c19d437 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -170,6 +170,10 @@ type NetworkResource struct { MBitsReserved int } +// RegisterResponse is used to respond to a register request +type RegisterResponse struct { +} + // msgpackHandle is a shared handle for encoding/decoding of structs var msgpackHandle = &codec.MsgpackHandle{}