mercury/internal/database/post.go

12 lines
172 B
Go
Raw Normal View History

2023-09-03 00:23:48 +02:00
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
}