Fix: mismatched pointer receiver in oss.Driver

pull/330/head
HFO4 2020-04-24 11:14:32 +08:00
parent f7311f906b
commit 8c547a05fd
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ type Driver struct {
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")
}