PoC for the Aether network function configuration system.
This PoC implements the AccessAndMobility endpoint which returns
- PLMN ID list
- SNSSAI list
- TAC list
Using 2 types of services:
The server starts running and response to the received requests. The client sends a request every 5 seconds.
go build -o bin/grpc-server grpc/cmd/server/main.go
go build -o bin/grpc-client grpc/cmd/client/main.go
./bin/grpc-server
./bin/grpc-client
protoc --go_out=. --go-grpc_out=. proto/config.proto
go build -o bin/rest-server rest/cmd/server/main.go
go build -o bin/rest-client rest/cmd/client/main.go
./bin/rest-server
./bin/rest-client
npx openapi-generator-cli version
openapi-generator-cli generate \
-i ./webconsole-api.yaml \
-g go-gin-server \
-o ./webconsole-server