(ctx context.Context, sid, path string, args model.SharingArchiveMetaArgs)
| 26 | } |
| 27 | |
| 28 | func ArchiveMeta(ctx context.Context, sid, path string, args model.SharingArchiveMetaArgs) (*model.Sharing, *model.ArchiveMetaProvider, error) { |
| 29 | sharing, res, err := archiveMeta(ctx, sid, path, args) |
| 30 | if err != nil { |
| 31 | log.Warnf("failed get sharing archive meta %s/%s: %s", sid, path, err) |
| 32 | return nil, nil, err |
| 33 | } |
| 34 | return sharing, res, nil |
| 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) |
no test coverage detected