feat: string-unpack api
This commit is contained in:
16
string-unpack/internal/sql/models.go
Normal file
16
string-unpack/internal/sql/models.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// Code generated by sqlc. DO NOT EDIT.
|
||||
// versions:
|
||||
// sqlc v1.26.0
|
||||
|
||||
package sql
|
||||
|
||||
import (
|
||||
"github.com/jackc/pgx/v5/pgtype"
|
||||
)
|
||||
|
||||
type UnpackHistory struct {
|
||||
ID pgtype.UUID `db:"id" json:"id"`
|
||||
Input string `db:"input" json:"input"`
|
||||
Result string `db:"result" json:"result"`
|
||||
CreatedAt pgtype.Timestamptz `db:"created_at" json:"created_at"`
|
||||
}
|
Reference in New Issue
Block a user