2024-10-23 22:16:51 +02:00
|
|
|
// Code generated by sqlc. DO NOT EDIT.
|
|
|
|
// versions:
|
|
|
|
// sqlc v1.27.0
|
|
|
|
|
|
|
|
package database
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Chirp struct {
|
|
|
|
ID uuid.UUID
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
Body string
|
|
|
|
UserID uuid.UUID
|
|
|
|
}
|
|
|
|
|
|
|
|
type User struct {
|
2024-10-24 22:40:26 +02:00
|
|
|
ID uuid.UUID
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
Email string
|
|
|
|
HashedPassword string
|
2024-10-23 22:16:51 +02:00
|
|
|
}
|