12 lines
172 B
Go
12 lines
172 B
Go
|
package database
|
||
|
|
||
|
import "github.com/oklog/ulid/v2"
|
||
|
|
||
|
// Post is a single post.
|
||
|
type Post struct {
|
||
|
ID ulid.ULID
|
||
|
BlogID ulid.ULID
|
||
|
Content *string
|
||
|
Source *string
|
||
|
}
|