Add a generate-registration command

This commit is contained in:
Gary Kramlich
2021-11-18 02:44:21 -06:00
parent 5b3811ce96
commit 09911a11e3
10 changed files with 229 additions and 2 deletions

11
go.mod
View File

@@ -5,6 +5,15 @@ go 1.17
require (
github.com/alecthomas/kong v0.2.18
gopkg.in/yaml.v2 v2.4.0
maunium.net/go/mautrix v0.9.27
)
require github.com/pkg/errors v0.9.1 // indirect
require (
github.com/btcsuite/btcutil v1.0.2 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d // indirect
maunium.net/go/maulogger/v2 v2.2.4 // indirect
)