Add command to subscribe to USK updates
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / SubscribeUskCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import java.util.Optional;
4
5 /**
6  * Subscribes to a USK.
7  *
8  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
9  */
10 public interface SubscribeUskCommand {
11
12         Executable<Optional<UskSubscription>> uri(String uri);
13
14 }