This commit is contained in:
wagslane
2024-03-07 09:48:38 -07:00
parent 2b337f9f0f
commit 86874e2f9e
171 changed files with 63081 additions and 7300 deletions

View File

@@ -1,6 +1,6 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.18.0
// sqlc v1.25.0
package database

View File

@@ -1,25 +1,23 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.18.0
// sqlc v1.25.0
package database
import (
"time"
)
import ()
type Note struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
CreatedAt string
UpdatedAt string
Note string
UserID string
}
type User struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
CreatedAt string
UpdatedAt string
Name string
ApiKey string
}

View File

@@ -1,13 +1,12 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.18.0
// sqlc v1.25.0
// source: notes.sql
package database
import (
"context"
"time"
)
const createNote = `-- name: CreateNote :exec
@@ -17,8 +16,8 @@ VALUES (?, ?, ?, ?, ?)
type CreateNoteParams struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
CreatedAt string
UpdatedAt string
Note string
UserID string
}

View File

@@ -1,13 +1,12 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.18.0
// sqlc v1.25.0
// source: users.sql
package database
import (
"context"
"time"
)
const createUser = `-- name: CreateUser :exec
@@ -23,8 +22,8 @@ VALUES (
type CreateUserParams struct {
ID string
CreatedAt time.Time
UpdatedAt time.Time
CreatedAt string
UpdatedAt string
Name string
ApiKey string
}