Merge pull request #78 from andy89923/feat/af-backend
Feature: Make webconsole backend register to NRF as AF
No related branches found
No related tags found
Showing
- backend/logger/logger.go 2 additions, 0 deletionsbackend/logger/logger.go
- backend/webui_context/context.go 37 additions, 8 deletionsbackend/webui_context/context.go
- backend/webui_context/nrf_discovery.go 48 additions, 0 deletionsbackend/webui_context/nrf_discovery.go
- backend/webui_context/nrf_management.go 121 additions, 0 deletionsbackend/webui_context/nrf_management.go
- backend/webui_service/webui_init.go 44 additions, 3 deletionsbackend/webui_service/webui_init.go
- go.mod 4 additions, 0 deletionsgo.mod
- go.sum 5 additions, 1004 deletionsgo.sum
backend/webui_context/nrf_management.go
0 → 100644
... | ... | @@ -23,6 +23,7 @@ require ( |
require ( | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/antihax/optional v1.0.0 // indirect | ||
github.com/bytedance/sonic v1.9.1 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
... | ... | @@ -45,6 +46,7 @@ require ( |
github.com/google/s2a-go v0.1.3 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.8.0 // indirect | ||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
... | ... | @@ -53,6 +55,7 @@ require ( |
github.com/kr/fs v0.1.0 // indirect | ||
github.com/leodido/go-urn v1.2.4 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | ||
... | ... | @@ -81,6 +84,7 @@ require ( |
google.golang.org/grpc v1.56.3 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect | ||
gopkg.in/h2non/gock.v1 v1.1.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment