From fe4715082b710693c2100033ad58fc8ca1d0d815 Mon Sep 17 00:00:00 2001 From: Hemanth Bollamreddi Date: Thu, 9 Jan 2020 12:40:29 +0530 Subject: [PATCH] Solved filter.go:28:21: undefined: strings --- filter.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/filter.go b/filter.go index 9c30615..4cdf61b 100644 --- a/filter.go +++ b/filter.go @@ -4,6 +4,8 @@ package mop +import "strings" + // Filter gets called to sort stock quotes by one of the columns. The // setup is rather lengthy; there should probably be more concise way // that uses reflection and avoids hardcoding the column names.