verify successful database interactions with test endpoint

This commit is contained in:
katefort 2025-04-17 17:29:47 -05:00
parent c1930d6821
commit 51a34008f1
5 changed files with 38 additions and 13 deletions

View file

@ -5,10 +5,10 @@ import (
)
type Product struct {
id int `ksql:"id"`
system string `ksql:"system"`
barcode string `ksql:"barcode"`
created_at time.Time `ksql:"created_at,timeNowUTC"`
Id int `ksql:"id"`
System string `ksql:"system"`
Barcode string `ksql:"barcode"`
Created_at time.Time `ksql:"created_at,timeNowUTC"`
}
type WorkerType int