11 lines
142 B
Go
Raw Permalink Normal View History

2025-01-21 14:00:40 +01:00
package app
type Post struct {
Slug string
Content string
Title string
Tags []string
Created string
Published bool
}