39 lines
602 B
Go
39 lines
602 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
|
|
package sql
|
|
|
|
type Post struct {
|
|
ID int64
|
|
SiteID int64
|
|
Guid string
|
|
Title string
|
|
Body string
|
|
Slug string
|
|
CreatedAt int64
|
|
PublishedAt int64
|
|
}
|
|
|
|
type PublishTarget struct {
|
|
ID int64
|
|
SiteID int64
|
|
PublishTargetType int64
|
|
BaseUrl string
|
|
TargetSiteID string
|
|
TargetPublishKey string
|
|
}
|
|
|
|
type Site struct {
|
|
ID int64
|
|
OwnerID int64
|
|
Title string
|
|
Tagline string
|
|
}
|
|
|
|
type User struct {
|
|
ID int64
|
|
Username string
|
|
Password string
|
|
}
|