Clean up imports
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / WithUri.java
1 package net.pterodactylus.fcp.quelaton;
2
3 /**
4  * The terminal operation of an FCP command, requiring a Freenet URI.
5  *
6  * @param <R>
7  *      The type of the command result
8  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
9  */
10 public interface WithUri<R> {
11
12         R uri(String uri);
13
14 }