nirvash/archetype/page.go

11 lines
111 B
Go

package archetype
import (
"time"
)
type Page struct {
Title string
Content string
Edited time.Time
}