mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
6ae27c9a9b
* feature: add User entity to Account * test: new file store creation test * test: add FileStore persist-restore tests * test: add GetOrCreateAccountByUser Accountmanager test * refactor: rename account manager users file * refactor: use userId instead of accountId when handling Management HTTP API * fix: new account creation for every request * fix: golint * chore: add account creator to Account Entity to identify who created the account. * chore: use xid ID generator for account IDs * fix: test failures * test: check that CreatedBy is stored when account is stored * chore: add account copy method * test: remove test for non existent GetOrCreateAccount func * chore: add accounts conversion function * fix: golint * refactor: simplify admin user creation * refactor: move migration script to a separate package
63 lines
2.6 KiB
Modula-2
63 lines
2.6 KiB
Modula-2
module github.com/wiretrustee/wiretrustee
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/cenkalti/backoff/v4 v4.1.2
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/kardianos/service v1.2.1-0.20210728001519-a323c3813bc7 //keep this version otherwise wiretrustee up command breaks
|
|
github.com/onsi/ginkgo v1.16.5
|
|
github.com/onsi/gomega v1.17.0
|
|
github.com/pion/ice/v2 v2.1.17
|
|
github.com/rs/cors v1.8.0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/vishvananda/netlink v1.1.0
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
|
|
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
|
|
golang.zx2c4.com/wireguard v0.0.0-20211209221555-9c9e7e272434
|
|
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20211215182854-7a385b3431de
|
|
golang.zx2c4.com/wireguard/windows v0.5.1
|
|
google.golang.org/grpc v1.43.0
|
|
google.golang.org/protobuf v1.27.1
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
)
|
|
|
|
require github.com/rs/xid v1.3.0
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.4.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
|
|
github.com/mdlayher/genetlink v1.1.0 // indirect
|
|
github.com/mdlayher/netlink v1.4.2 // indirect
|
|
github.com/mdlayher/socket v0.0.0-20211102153432-57e3fa563ecb // indirect
|
|
github.com/nxadm/tail v1.4.8 // indirect
|
|
github.com/pion/dtls/v2 v2.0.12 // indirect
|
|
github.com/pion/logging v0.2.2 // indirect
|
|
github.com/pion/mdns v0.0.5 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/stun v0.3.5 // indirect
|
|
github.com/pion/transport v0.12.3 // indirect
|
|
github.com/pion/turn/v2 v2.0.5 // indirect
|
|
github.com/pion/udp v0.1.1 // indirect
|
|
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect
|
|
golang.org/x/mod v0.5.1 // indirect
|
|
golang.org/x/net v0.0.0-20211208012354-db4efeb81f4b // indirect
|
|
golang.org/x/text v0.3.8-0.20211105212822-18b340fc7af2 // indirect
|
|
golang.org/x/tools v0.1.8 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
golang.zx2c4.com/go118/netip v0.0.0-20211111135330-a4a02eeacf9d // indirect
|
|
golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 // indirect
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
honnef.co/go/tools v0.2.2 // indirect
|
|
)
|