19 lines
534 B
Go
19 lines
534 B
Go
package tenant
|
|
|
|
import (
|
|
"gitlab.com/wpetit/goweb/cli/format"
|
|
"gitlab.com/wpetit/goweb/cli/format/table"
|
|
)
|
|
|
|
func tenantHints(outputMode format.OutputMode) format.Hints {
|
|
return format.Hints{
|
|
OutputMode: outputMode,
|
|
Props: []format.Prop{
|
|
format.NewProp("ID", "ID", table.WithCompactModeMaxColumnWidth(8)),
|
|
format.NewProp("Label", "Label"),
|
|
format.NewProp("CreatedAt", "CreatedAt", table.WithCompactModeMaxColumnWidth(20)),
|
|
format.NewProp("UpdatedAt", "UpdatedAt", table.WithCompactModeMaxColumnWidth(20)),
|
|
},
|
|
}
|
|
}
|