nirvash/page/page.go
2022-05-29 00:26:36 -06:00

11 lines
106 B
Go

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