forked from j62/ctbrec
18 lines
347 B
Java
18 lines
347 B
Java
package ctbrec.sites.dreamcam;
|
|
|
|
import ctbrec.Config;
|
|
import ctbrec.io.HttpClient;
|
|
import java.io.IOException;
|
|
|
|
public class DreamcamHttpClient extends HttpClient {
|
|
|
|
public DreamcamHttpClient(Config config) {
|
|
super("dreamcam", config);
|
|
}
|
|
|
|
@Override
|
|
public boolean login() throws IOException {
|
|
return false;
|
|
}
|
|
}
|