16 lines
222 B
Go
16 lines
222 B
Go
// internal/article/model.go
|
||
package article
|
||
|
||
import (
|
||
"html/template"
|
||
"time"
|
||
)
|
||
|
||
type Article struct {
|
||
Title string
|
||
Slug string
|
||
Date time.Time
|
||
Cover string // NEW
|
||
Body template.HTML // already trusted
|
||
}
|