iop/apps/control-plane/internal/wire/wire.go
toki ed882cf6a4 feat: add control-plane, web, and docker-compose
- 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
2026-05-18 06:21:48 +09:00

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
}