Files
b1tsblog/internal/article/model.go
2025-05-04 14:16:29 +02:00

16 lines
222 B
Go
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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
}