All checks were successful
release-tag / release-image (push) Successful in 2m22s
17 lines
237 B
Go
17 lines
237 B
Go
// internal/article/model.go
|
|
package article
|
|
|
|
import (
|
|
"html/template"
|
|
"time"
|
|
)
|
|
|
|
type Article struct {
|
|
Title string
|
|
Slug string
|
|
Date time.Time
|
|
Cover string
|
|
Body template.HTML
|
|
Description string
|
|
}
|