fixed example
This commit is contained in:
parent
19e8be485d
commit
e95eda044a
|
@ -1,5 +1,8 @@
|
||||||
module cra
|
module cra-go
|
||||||
|
|
||||||
go 1.13
|
go 1.13
|
||||||
|
|
||||||
require golang.org/x/net v0.0.0-20190930134127-c5a3c61f89f3
|
require (
|
||||||
|
github.com/ImVexed/muon v0.0.0-20191002025434-ac0754bb0a30 // indirect
|
||||||
|
golang.org/x/net v0.0.0-20190930134127-c5a3c61f89f3
|
||||||
|
)
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"cra/webfiles"
|
"github.com/ImVexed/muon"
|
||||||
"http"
|
|
||||||
|
"cra-go/webfiles"
|
||||||
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
7
go.mod
7
go.mod
|
@ -1,8 +1,3 @@
|
||||||
module github.com/ImVexed/Muon
|
module github.com/ImVexed/muon
|
||||||
|
|
||||||
go 1.13
|
go 1.13
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/capnm/sysinfo v0.0.0-20130621111458-5909a53897f3
|
|
||||||
golang.org/x/net v0.0.0-20190926025831-c00fd9afed17
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in New Issue