Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion example_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package quantile_test

import (
quantile "." // import fully qualified in your code
"fmt"
"time"

"github.com/koalacxr/quantile"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, could this test file just be in the quantile package, and the quantile.s below removed?

)

var rpcs *quantile.Estimator
Expand Down
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module github.com/koalacxr/quantile

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This being the upstream repository, should this & the above import be github.com/streadway/quantile instead?


go 1.17