13 lines
174 B
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)
|
|
}
|