Introduce CallQualitySurveyManager

This commit is contained in:
Jon Chambers
2025-10-09 13:07:21 -04:00
committed by Jon Chambers
parent c9760f4c38
commit c68e3103c4
9 changed files with 463 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/*
* Copyright 2025 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.configuration;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotNull;
public record CallQualitySurveyConfiguration (@Valid @NotNull PubSubPublisherFactory pubSubPublisher) {
}