internal/storage/sqlite/db/models.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | // Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.29.0 package db type Content struct { ContentID int64 FileID int64 Encoding string Body []byte } type File struct { FileID int64 UrlID int64 ContentType string LastModified int64 Title string Etag string StyleHash string Headers []byte } type Url struct { UrlID int64 Path string } |