Skip to content

Commit 66ab871

Browse files
authored
Make module path valid. (#8)
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.
1 parent ad2e510 commit 66ab871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module tsplot
1+
module github.com/bitly/tsplot
22

33
go 1.14
44

tscli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"strconv"
1010
"strings"
1111
"time"
12-
"tsplot/tsplot"
1312

1413
monitoring "cloud.google.com/go/monitoring/apiv3/v2"
14+
"github.com/bitly/tsplot/tsplot"
1515
"github.com/spf13/cobra"
1616
"golang.org/x/image/colornames"
1717
"gonum.org/v1/plot/vg"

0 commit comments

Comments
 (0)