Do file upload, show list of uploads, do initial processing.

This commit is contained in:
Eli Ribble 2026-02-09 18:25:44 +00:00
parent 8d4195a024
commit 135ad2b73e
No known key found for this signature in database
45 changed files with 7126 additions and 1464 deletions

17
db/dberrors/pool.bob.go Normal file
View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var PoolErrors = &poolErrors{
ErrUniquePoolPkey: &UniqueConstraintError{
schema: "",
table: "pool",
columns: []string{"id", "version"},
s: "pool_pkey",
},
}
type poolErrors struct {
ErrUniquePoolPkey *UniqueConstraintError
}