iop/apps/edge/cmd/edge/console.go

13 lines
249 B
Go

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)
}