mirror of
https://github.com/halejohn/Cloudreve.git
synced 2026-01-26 09:34:57 +08:00
Fix: mismatched pointer receiver in oss.Driver
This commit is contained in:
@@ -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")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user