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