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

This commit is contained in:
Mya 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

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

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

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

@ -4,7 +4,7 @@
package service package service
import ( 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. // New constructs a spec given a label and set of options.

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

2
go.mod

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