all repos — nirvash @ b7e2dc3ab7463cc239093623befde3901dcacec7

modular CMS using the quartzgun library

page/page.go (raw)

1
2
3
4
5
6
7
8
9
10
11
package page

import (
  "time"
)

type Page struct {
  Title string
  Content string
  Edited time.Time
}