diff --git a/api/utils_sql.go b/api/utils_sql.go new file mode 100644 index 0000000..c75f34d --- /dev/null +++ b/api/utils_sql.go @@ -0,0 +1,11 @@ +package main + +import () + +// scanner is a database/sql abstraction interface that can be used with both +// *sql.Row and *sql.Rows. +type sqlScanner interface { + // Scan copies columns from the underlying query row(s) to the values + // pointed to by dest. + Scan(dest ...interface{}) error +}