feat: string-unpack api

This commit is contained in:
2024-05-08 21:25:02 +03:00
parent 0f8d6b39fb
commit 070934d66a
18 changed files with 572 additions and 4 deletions

View 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"`
}