Go fmt on the entire project
This commit is contained in:
parent
b636ff490c
commit
2678032c2c
6 changed files with 18 additions and 18 deletions
18
def/task.go
18
def/task.go
|
@ -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"`
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue