iop/apps/control-plane/internal/wire/wire.go
toki 1fe368ad2c refactor: portal → client 앱 리팩토링 및 제어플랫폼 와이어 클라이언트 명명 변경
- apps/portal 디렉터리를 apps/client로 리팩터링
- ControlPlaneWireClient → WireClient 명명 변경
- 관련_proto import 정렬, struct protobuf 생성 제거
- README, docker-compose, 스크립트 등 일관성 개선
2026-05-28 20:24:45 +09:00

12 lines
465 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,
// realized by ClientServer for Client-Control Plane communication.
type Endpoint struct {
Listen string
}