initial commit

This commit is contained in:
Seb
2024-02-15 21:43:08 -08:00
commit 975217d1f7
16 changed files with 1493 additions and 0 deletions

17
sqlc.yaml Normal file
View File

@@ -0,0 +1,17 @@
version: "2"
sql:
- engine: "sqlite"
queries: "db/queries.sql"
schema: "db/schema.sql"
gen:
go:
package: "internal"
out: "internal"
emit_result_struct_pointers: true
overrides:
- column: jobs.consumer_id
go_type: "string"
- column: jobs.errors
go_type:
import: ""
type: "ErrorList"