cpolis/cmd/data/articles.go

17 lines
203 B
Go

package data
import (
"time"
)
type Article struct {
Title string
Created time.Time
Desc string
Content string
Tags []string
Published bool
ID int64
AuthorID int64
}