- Add edge runtime config and opsconsole package - Refactor edge console to use new runtime config - Add service source metadata support - Update CLI adapter with target terminology - Add edge operation contract and event bus replay - Update node label and command ops surface - Add E2E smoke tests and full validation - Update proto runtime definitions - Update documentation and agent-ops rules
13 lines
246 B
Go
13 lines
246 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"iop/apps/edge/internal/opsconsole"
|
|
"iop/packages/config"
|
|
)
|
|
|
|
func runConsole(ctx context.Context, cfg *config.EdgeConfig, in io.Reader, out io.Writer) error {
|
|
return opsconsole.Run(ctx, cfg, in, out)
|
|
}
|