# Functions
No description provided by the author
func (s *Repo) ScanRow(rows *sql.Rows) (interface{}, error) {
tick := Tick{}
err := rows.Scan(&tick.InstrumentId, &tick.StockName, &tick.Timestamp, &tick.Value)
if err != nil {
return nil, err
}
return tick, nil
}
*/.
No description provided by the author
# Variables
No description provided by the author