2025-10-27 09:43:19 +08:00
|
|
|
package com.qxcm.qxlive;
|
2025-10-24 17:55:15 +08:00
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
|
|
|
|
|
|
import com.xscm.moduleutil.activity.IPresenter;
|
|
|
|
|
import com.xscm.moduleutil.activity.IView;
|
|
|
|
|
|
|
|
|
|
public final class LaunchContacter {
|
|
|
|
|
|
|
|
|
|
public interface View extends IView<Activity> {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface ILoginPre extends IPresenter {
|
|
|
|
|
|
|
|
|
|
void oauthLogin(String login_token);
|
|
|
|
|
|
|
|
|
|
void address_ip(String address_ip);
|
|
|
|
|
}
|
|
|
|
|
}
|