Add CommandStopListener

This commit is contained in:
Chris Eager
2023-07-25 11:02:56 -05:00
committed by Chris Eager
parent dc5f35460b
commit 48c7572dd5
6 changed files with 81 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
/*
* Copyright 2023 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.configuration;
import javax.validation.constraints.NotNull;
public record CommandStopListenerConfiguration(@NotNull String path) {
}