This commit is contained in:
withchao
2023-03-29 18:33:02 +08:00
parent 73747e0b38
commit bd07594ae0
6 changed files with 383 additions and 161 deletions
+5
View File
@@ -28,6 +28,11 @@ func (t *thirdServer) GetUrl(ctx context.Context, req *third.GetUrlReq) (*third.
return t.s3dataBase.GetUrl(ctx, req)
}
func (t *thirdServer) GetHashInfo(ctx context.Context, req *third.GetHashInfoReq) (*third.GetHashInfoResp, error) {
return nil, nil
}
func (t *thirdServer) CleanObject(ctx context.Context, now time.Time) {
t.s3dataBase.CleanExpirationObject(ctx, now)
}