11 lines
142 B
Go
11 lines
142 B
Go
|
package app
|
||
|
|
||
|
type Post struct {
|
||
|
Slug string
|
||
|
Content string
|
||
|
Title string
|
||
|
Tags []string
|
||
|
Created string
|
||
|
Published bool
|
||
|
}
|