File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package driver
2+
3+ type Addition interface {
4+ }
Original file line number Diff line number Diff line change @@ -22,11 +22,12 @@ type Writer interface {
2222 Rename (ctx context.Context , src , dst string ) error
2323 Copy (ctx context.Context , src , dst string ) error
2424 Remove (ctx context.Context , path string ) error
25- Put (ctx context.Context , stream FileStream , parent string ) error
25+ Put (ctx context.Context , stream FileStream , parentPath string ) error
2626}
2727
2828type Other interface {
2929 Init (ctx context.Context ) error
3030 Update (ctx context.Context ) error
3131 Drop (ctx context.Context ) error
32+ Additional () Addition
3233}
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ type Account struct {
66 Index int `json:"index"`
77 Driver string `json:"driver"`
88 Status string `json:"status"`
9- Custom string `json:"custom "`
9+ Addition string `json:"addition "`
1010}
You can’t perform that action at this time.
0 commit comments