11 lines
227 B
Java
11 lines
227 B
Java
package com.github.catvod.spider;
|
|
|
|
import android.content.Context;
|
|
import com.github.catvod.crawler.SpiderDebug;
|
|
|
|
public class Init {
|
|
public static void init(Context context) {
|
|
SpiderDebug.log("嘿嘿嘿");
|
|
}
|
|
}
|