15 lines
205 B
Go
15 lines
205 B
Go
package app
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
type InspectOptions struct {
|
|
Path string
|
|
}
|
|
|
|
func Inspect(context.Context, InspectOptions) error {
|
|
return fmt.Errorf("inspect command: %w", ErrNotImplemented)
|
|
}
|