Save oauth tokens to the database for use later.

This commit is contained in:
Eli Ribble 2025-11-06 00:23:58 +00:00
parent 8cd11b350d
commit 858bc031a0
No known key found for this signature in database
18 changed files with 1957 additions and 10 deletions

View file

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