Files
distributor/internal/app/run.go

13 lines
174 B
Go

package app
import (
"context"
"fmt"
)
type RunOptions struct{}
func Run(context.Context, RunOptions) error {
return fmt.Errorf("run command: %w", ErrNotImplemented)
}