13 lines
130 B
Go
13 lines
130 B
Go
package mindflow
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Post struct {
|
|
Category string
|
|
Date time.Time
|
|
Title string
|
|
Body string
|
|
}
|