fix(go.mod): rename go.mod to use new upstream

This commit is contained in:
Mya Pitzeruse 2022-07-02 11:38:27 -05:00
parent e269f5e491
commit 045640bd04
No known key found for this signature in database
GPG Key ID: C3ECFA648DAD27FA
6 changed files with 11 additions and 11 deletions

View File

@ -23,10 +23,10 @@ which includes several of my personal dashboards for different systems.
package main
import (
"github.com/mjpitz/emc/catalog"
"github.com/mjpitz/emc/catalog/grafana"
"github.com/mjpitz/emc/catalog/linkgroup"
"github.com/mjpitz/emc/catalog/service"
"code.pitz.tech/mya/emc/catalog"
"code.pitz.tech/mya/emc/catalog/grafana"
"code.pitz.tech/mya/emc/catalog/linkgroup"
"code.pitz.tech/mya/emc/catalog/service"
)
func main() {

View File

@ -4,7 +4,7 @@
package linkgroup
import (
"github.com/mjpitz/emc/catalog/link"
"code.pitz.tech/mya/emc/catalog/link"
)
func New(label string, options ...Option) Spec {

View File

@ -15,7 +15,7 @@ import (
"os"
"time"
"github.com/mjpitz/emc/catalog/service"
"code.pitz.tech/mya/emc/catalog/service"
)
//go:embed index.html.tpl

View File

@ -4,7 +4,7 @@
package service
import (
"github.com/mjpitz/emc/catalog/linkgroup"
"code.pitz.tech/mya/emc/catalog/linkgroup"
)
// New constructs a spec given a label and set of options.

View File

@ -1,9 +1,9 @@
package main
import (
"github.com/mjpitz/emc/catalog"
"github.com/mjpitz/emc/catalog/linkgroup"
"github.com/mjpitz/emc/catalog/service"
"code.pitz.tech/mya/emc/catalog"
"code.pitz.tech/mya/emc/catalog/linkgroup"
"code.pitz.tech/mya/emc/catalog/service"
)
func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/mjpitz/emc
module code.pitz.tech/mya/emc
go 1.18