2023-04-24 20:52:12 +02:00
|
|
|
package proxy
|
|
|
|
|
|
|
|
import (
|
2024-05-17 15:44:28 +02:00
|
|
|
"gitlab.com/wpetit/goweb/cli/format"
|
|
|
|
"gitlab.com/wpetit/goweb/cli/format/table"
|
2023-04-24 20:52:12 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func proxyHeaderHints(outputMode format.OutputMode) format.Hints {
|
|
|
|
return format.Hints{
|
|
|
|
OutputMode: outputMode,
|
|
|
|
Props: []format.Prop{
|
|
|
|
format.NewProp("Name", "Name"),
|
|
|
|
format.NewProp("Enabled", "Enabled"),
|
|
|
|
format.NewProp("Weight", "Weight"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func proxyHints(outputMode format.OutputMode) format.Hints {
|
|
|
|
return format.Hints{
|
|
|
|
OutputMode: outputMode,
|
|
|
|
Props: []format.Prop{
|
|
|
|
format.NewProp("Name", "Name"),
|
|
|
|
format.NewProp("From", "From"),
|
|
|
|
format.NewProp("To", "To"),
|
|
|
|
format.NewProp("Enabled", "Enabled"),
|
|
|
|
format.NewProp("Weight", "Weight"),
|
|
|
|
format.NewProp("CreatedAt", "CreatedAt", table.WithCompactModeMaxColumnWidth(20)),
|
|
|
|
format.NewProp("UpdatedAt", "UpdatedAt", table.WithCompactModeMaxColumnWidth(20)),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|