init
This commit is contained in:
commit
2586161abd
49 changed files with 4171 additions and 0 deletions
11
internal/database/post.go
Normal file
11
internal/database/post.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue