You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/internal/rpc/third/s3.go

24 lines
642 B

2 years ago
package third
2 years ago
import (
"OpenIM/pkg/proto/third"
"context"
2 years ago
"time"
2 years ago
)
func (t *thirdServer) ApplyPut(ctx context.Context, req *third.ApplyPutReq) (*third.ApplyPutResp, error) {
return t.s3dataBase.ApplyPut(ctx, req)
}
func (t *thirdServer) GetPut(ctx context.Context, req *third.GetPutReq) (*third.GetPutResp, error) {
return t.s3dataBase.GetPut(ctx, req)
}
func (t *thirdServer) ConfirmPut(ctx context.Context, req *third.ConfirmPutReq) (*third.ConfirmPutResp, error) {
return t.s3dataBase.ConfirmPut(ctx, req)
}
2 years ago
func (t *thirdServer) CleanObject(ctx context.Context, now time.Time) {
2 years ago
t.s3dataBase.CleanExpirationObject(ctx, now)
2 years ago
}