mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-27 01:33:37 +00:00
12 lines
119 B
Go
12 lines
119 B
Go
|
package components
|
||
|
|
||
|
type Page struct {
|
||
|
Path string
|
||
|
Title string
|
||
|
}
|
||
|
|
||
|
type Base struct {
|
||
|
Page *Page
|
||
|
Pages []*Page
|
||
|
}
|