Fix: mismatched pointer receiver in oss.Driver
This commit is contained in:
parent
f7311f906b
commit
8c547a05fd
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ type Driver struct {
|
||||||
HTTPClient request.Client
|
HTTPClient request.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
func (handler *Driver) List(ctx context.Context, path string) ([]response.Object, error) {
|
func (handler Driver) List(ctx context.Context, path string) ([]response.Object, error) {
|
||||||
panic("implement me")
|
panic("implement me")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue