first commit

This commit is contained in:
2025-12-31 11:44:15 +07:00
commit c33ea5500e
12 changed files with 484 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package repository
import (
"github.com/google/uuid"
"github.com/jackc/pgx/v5/pgtype"
)
type Identifier struct {
ID uuid.UUID
Slug string
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}