circleci build tag fix

This commit is contained in:
Ella Pietraroia 2020-01-31 13:36:12 +10:30
parent 5c68510209
commit 36d9e0f958
1 changed files with 4 additions and 0 deletions

View File

@ -45,3 +45,7 @@ func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSi
func NewDifference(dst io.WriteCloser, debug bool, threshold float64) *NoOp {
return &NoOp{dst: dst}
}
func NewBasicFilter(dst io.WriteCloser, debug bool) *Basic {
return &NoOp{dst: dst}
}