Add initial distributor CLI skeleton
This commit is contained in:
14
internal/app/inspect.go
Normal file
14
internal/app/inspect.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type InspectOptions struct {
|
||||
Path string
|
||||
}
|
||||
|
||||
func Inspect(context.Context, InspectOptions) error {
|
||||
return fmt.Errorf("inspect command: %w", ErrNotImplemented)
|
||||
}
|
||||
Reference in New Issue
Block a user