14 lines
289 B
Go
14 lines
289 B
Go
|
package layer
|
||
|
|
||
|
import "gitlab.com/wpetit/goweb/cli/format"
|
||
|
|
||
|
func layerDefinitionHints(outputMode format.OutputMode) format.Hints {
|
||
|
return format.Hints{
|
||
|
OutputMode: outputMode,
|
||
|
Props: []format.Prop{
|
||
|
format.NewProp("Type", "Type"),
|
||
|
format.NewProp("Options", "Options"),
|
||
|
},
|
||
|
}
|
||
|
}
|