12 lines
173 B
Go
12 lines
173 B
Go
package database
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func FindClaimsByBarcode(system string, barcode string) {
|
|
ctx := context.Background()
|
|
api.db.Exec("SELECT * FROM user_claims")
|
|
|
|
}
|