nirvash/page/page.go

12 lines
106 B
Go
Raw Normal View History

package page
import (
2022-05-29 06:26:36 +00:00
"time"
)
type Page struct {
2022-05-29 06:26:36 +00:00
Title string
Content string
Edited time.Time
}