(ctx context.Context, sid, path string, args model.SharingArchiveListArgs)
| 35 | } |
| 36 | |
| 37 | func ArchiveList(ctx context.Context, sid, path string, args model.SharingArchiveListArgs) (*model.Sharing, []model.Obj, error) { |
| 38 | sharing, res, err := archiveList(ctx, sid, path, args) |
| 39 | if err != nil { |
| 40 | log.Warnf("failed list sharing archive %s/%s: %s", sid, path, err) |
| 41 | return nil, nil, err |
| 42 | } |
| 43 | return sharing, res, nil |
| 44 | } |
| 45 | |
| 46 | type LinkArgs struct { |
| 47 | model.SharingListArgs |
no test coverage detected