- Add control-plane service with Dockerfile and internal packages - Add web application (Next.js) - Add docker-compose.yml for orchestration - Update .gitignore and README.md
13 lines
551 B
Go
13 lines
551 B
Go
package wire
|
|
|
|
// Protocol names the IOP standard communication layer. The current Edge-Node
|
|
// transport already uses common-proto-socket; Control Plane endpoints should
|
|
// extend that same wire protocol instead of introducing another RPC framework.
|
|
const Protocol = "protobuf-socket"
|
|
|
|
// Endpoint is the reserved Control Plane wire endpoint configuration.
|
|
// TODO(control-plane): replace this scaffold with a protobuf-socket server
|
|
// once Portal-Control Plane and Control Plane-Edge message contracts settle.
|
|
type Endpoint struct {
|
|
Listen string
|
|
}
|