added meta method

This commit is contained in:
snoop 2017-11-24 15:59:55 +09:00
parent f0cfe8a881
commit a3b093f475

View File

@ -59,4 +59,8 @@ public abstract class Crawler {
return true;
}
public abstract Object getInternal(Config c) throws Exception;
public Object getInternalMeta(Config c) throws Exception {
return null;
}
}