18 lines
467 B
Go
18 lines
467 B
Go
package agent
|
|
|
|
import "forge.cadoles.com/Cadoles/emissary/internal/format"
|
|
|
|
func agentHints(outputMode format.OutputMode) format.Hints {
|
|
return format.Hints{
|
|
OutputMode: outputMode,
|
|
Props: []format.Prop{
|
|
format.NewProp("ID", "ID"),
|
|
format.NewProp("Label", "Label"),
|
|
format.NewProp("Thumbprint", "Thumbprint"),
|
|
format.NewProp("Status", "Status"),
|
|
format.NewProp("ContactedAt", "ContactedAt"),
|
|
format.NewProp("UpdatedAt", "UpdatedAt"),
|
|
},
|
|
}
|
|
}
|