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