android: add test server stub class. There aren't any credentials here yet, you'll have to add them yourself

This commit is contained in:
Adrian Kuschelyagi Malacoda 2020-10-29 03:58:31 -05:00
parent 54e87049b3
commit 51a2b89af1

View File

@ -0,0 +1,18 @@
package net.monarchpass.piecannon;
import net.monarchpass.piecannon.impl.SftpServer;
import java.net.URI;
public class TestServer extends SftpServer {
public TestServer () {
super(
"Test Server",
"",
22,
"",
"",
"",
URI.create("")
);
}
}