Skip to content
Permalink
a63a043436
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (12 sloc) 365 Bytes
package data_types
// This file contains data types that are shared between the sender and the responder you will write.
// Struct to manage responses we get
type ResponseStruct struct {
ID int `json:"id"`
}
// Struct to manage data we're sending
type DataStruct struct {
ID int `json:"id"`
Duration int `json:"duration"`
Stamp int `json:"stamp"`
}