package main import ( "context" "io" "iop/apps/edge/internal/opsconsole" "iop/packages/go/config" ) func runConsole(ctx context.Context, cfg *config.EdgeConfig, in io.Reader, out io.Writer) error { return opsconsole.Run(ctx, cfg, in, out) }