diff --git a/common/transporter/special/structs.go b/common/transporter/special/structs.go index a90821b..166de0e 100644 --- a/common/transporter/special/structs.go +++ b/common/transporter/special/structs.go @@ -6,8 +6,8 @@ type ( // InitiationTransporter allows for both the server type and the version to be communicated to the server InitiationTransporter struct { // Server is the server type - Server server.Server + Server server.Server `json:"server"` // Version is the string of the version - Version string + Version string `json:"version"` } )