mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-29 10:13:14 +01:00
20 lines
680 B
Java
20 lines
680 B
Java
package org.whispersystems.textsecuregcm.controllers;
|
|
|
|
import org.whispersystems.textsecuregcm.storage.AccountsManager;
|
|
|
|
public class FederationController {
|
|
|
|
protected final AccountsManager accounts;
|
|
protected final AttachmentController attachmentController;
|
|
protected final MessageController messageController;
|
|
|
|
public FederationController(AccountsManager accounts,
|
|
AttachmentController attachmentController,
|
|
MessageController messageController)
|
|
{
|
|
this.accounts = accounts;
|
|
this.attachmentController = attachmentController;
|
|
this.messageController = messageController;
|
|
}
|
|
}
|