You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
612 B
36 lines
612 B
// Code generated by sqlc. DO NOT EDIT. |
|
|
|
package db |
|
|
|
import ( |
|
"database/sql" |
|
"time" |
|
) |
|
|
|
type ApAcceptedActivity struct { |
|
ID int32 |
|
Iri string |
|
Actor string |
|
Type string |
|
Timestamp time.Time |
|
} |
|
|
|
type ApFollower struct { |
|
Iri string |
|
Inbox string |
|
Name sql.NullString |
|
Username string |
|
Image sql.NullString |
|
Request string |
|
CreatedAt sql.NullTime |
|
ApprovedAt sql.NullTime |
|
DisabledAt sql.NullTime |
|
} |
|
|
|
type ApOutbox struct { |
|
Iri string |
|
Value []byte |
|
Type string |
|
CreatedAt sql.NullTime |
|
LiveNotification sql.NullBool |
|
}
|
|
|