17 lines
426 B
Go
17 lines
426 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("Thumbprint", "Thumbprint"),
|
||
|
format.NewProp("Status", "Status"),
|
||
|
format.NewProp("CreatedAt", "CreatedAt"),
|
||
|
format.NewProp("UpdatedAt", "UpdatedAt"),
|
||
|
},
|
||
|
}
|
||
|
}
|