Include initial web router

This commit is contained in:
Kleissner
2022-09-24 16:56:20 +02:00
parent c862532b2d
commit f8f2d2cbfb
8 changed files with 143 additions and 17 deletions

15
go.mod
View File

@@ -1,17 +1,20 @@
module github.com/PeernetOfficial/Cmd
go 1.18
go 1.19
require github.com/PeernetOfficial/core v0.0.0-20220329002833-346f38c61138
require (
github.com/PeernetOfficial/core v0.0.0-20220601150942-0e3e8dc9885c
github.com/gorilla/mux v1.8.0
)
require (
github.com/akrylysov/pogreb v0.10.1 // indirect
github.com/enfipy/locker v1.1.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
golang.org/x/sys v0.0.0-20220325203850-36772127a21f // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/blake3 v1.1.7 // indirect
)