mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 10:43:14 +00:00
6 lines
97 B
Java
6 lines
97 B
Java
package com.volmit.iris.util;
|
|
|
|
public interface NastyFuture<R> {
|
|
R run() throws Throwable;
|
|
}
|