Setup: Not a component anymore

This commit is contained in:
zt515
2017-12-20 23:49:53 +08:00
parent d0bfc1a829
commit 779d715a7d
13 changed files with 24 additions and 43 deletions

View File

@ -0,0 +1,16 @@
package io.neoterm.setup;
import java.io.IOException;
import java.io.InputStream;
/**
* @author kiva
*/
public interface SourceConnection {
InputStream getInputStream() throws IOException;
int getSize();
void close();
}