github.com/simpleiot/simpleiot@v0.18.3/data/api.go (about)

     1  package data
     2  
     3  // StandardResponse is the standard response to any request
     4  type StandardResponse struct {
     5  	Success bool   `json:"success"`
     6  	Error   string `json:"error,omitempty"`
     7  	ID      string `json:"id,omitempty"`
     8  }