33 lines
900 B
Go
33 lines
900 B
Go
package proxy
|
|
|
|
import (
|
|
"forge.cadoles.com/cadoles/bouncer/internal/format"
|
|
"forge.cadoles.com/cadoles/bouncer/internal/format/table"
|
|
)
|
|
|
|
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)),
|
|
},
|
|
}
|
|
}
|