22 lines
317 B
Go
22 lines
317 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package pgstore
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Message struct {
|
|
ID uuid.UUID
|
|
RoomID uuid.UUID
|
|
Message string
|
|
ReactionCount int64
|
|
Answered bool
|
|
}
|
|
|
|
type Room struct {
|
|
ID uuid.UUID
|
|
Theme string
|
|
}
|