Skip to content

Commit

Permalink
Make module path valid. (#8)
Browse files Browse the repository at this point in the history
https://pkg.go.dev complains that the module path is invalid. And
therefore not available on the site. This PR updates the module path to
be a valid one.
  • Loading branch information
jharshman committed Jul 26, 2021
1 parent ad2e510 commit 66ab871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module tsplot
module github.com/bitly/tsplot

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion tscli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"strconv"
"strings"
"time"
"tsplot/tsplot"

monitoring "cloud.google.com/go/monitoring/apiv3/v2"
"github.com/bitly/tsplot/tsplot"
"github.com/spf13/cobra"
"golang.org/x/image/colornames"
"gonum.org/v1/plot/vg"
Expand Down

0 comments on commit 66ab871

Please sign in to comment.