Go fmt on the entire project

This commit is contained in:
Renan DelValle 2017-01-03 20:57:25 -05:00
parent b636ff490c
commit 2678032c2c
6 changed files with 18 additions and 18 deletions

View file

@ -8,15 +8,15 @@ import (
)
type Task struct {
Name string `json:"name"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
Watts float64 `json:"watts"`
Image string `json:"image"`
CMD string `json:"cmd"`
Instances *int `json:"inst"`
Host string `json:"host"`
TaskID string `json:"taskID"`
Name string `json:"name"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
Watts float64 `json:"watts"`
Image string `json:"image"`
CMD string `json:"cmd"`
Instances *int `json:"inst"`
Host string `json:"host"`
TaskID string `json:"taskID"`
ClassToWatts map[string]float64 `json:"class_to_watts"`
}