From 66ab871dbf82a8438160e94889c56f2775e4824f Mon Sep 17 00:00:00 2001 From: Joshua Harshman Date: Mon, 26 Jul 2021 15:16:47 -0600 Subject: [PATCH] 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. --- go.mod | 2 +- tscli/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index d0c71ae..f80e9c9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module tsplot +module github.com/bitly/tsplot go 1.14 diff --git a/tscli/main.go b/tscli/main.go index b67855d..6024527 100644 --- a/tscli/main.go +++ b/tscli/main.go @@ -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"