15 lines
209 B
Go
15 lines
209 B
Go
package app
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
type ValidateOptions struct {
|
|
Path string
|
|
}
|
|
|
|
func Validate(context.Context, ValidateOptions) error {
|
|
return fmt.Errorf("validate command: %w", ErrNotImplemented)
|
|
}
|