From 7a505378104e221fd02bfa10548eee36848bd18e Mon Sep 17 00:00:00 2001 From: Alex Palaistras Date: Sat, 29 Oct 2022 19:51:01 +0100 Subject: [PATCH] play: Update Go module path This will now point to the vanity `go.deuill.org` path, which will make any future migration to different sources simpler. --- play/go.mod | 2 +- play/play.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/play/go.mod b/play/go.mod index ebb0ecb..880735f 100644 --- a/play/go.mod +++ b/play/go.mod @@ -1,4 +1,4 @@ -module github.com/deuill/grawkit/play +module go.deuill.org/grawkit/play go 1.19 diff --git a/play/play.go b/play/play.go index d38ccc0..c31c39d 100644 --- a/play/play.go +++ b/play/play.go @@ -17,7 +17,7 @@ import ( "time" // Internal packages. - "github.com/deuill/grawkit/play/static" + "go.deuill.org/grawkit/play/static" // Third-party packages "github.com/benhoyt/goawk/interp"