8 lines
135 B
Go
8 lines
135 B
Go
package layouts
|
|
|
|
// LayoutConfig specifics common elements of layouts
|
|
type LayoutConfig struct {
|
|
MainTitle string
|
|
SubTitle string
|
|
}
|