2025-05-15 11:08:23 +08:00
|
|
|
package com.qxcm.qxlive;
|
|
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
|
|
|
|
|
|
import com.qxcm.moduleutil.activity.IPresenter;
|
|
|
|
|
import com.qxcm.moduleutil.activity.IView;
|
|
|
|
|
|
|
|
|
|
public final class LaunchContacter {
|
|
|
|
|
|
|
|
|
|
public interface View extends IView<Activity> {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface ILoginPre extends IPresenter {
|
|
|
|
|
|
2025-05-22 19:03:01 +08:00
|
|
|
void oauthLogin(String login_token);
|
2025-07-04 16:38:21 +08:00
|
|
|
|
|
|
|
|
void address_ip(String address_ip);
|
2025-05-15 11:08:23 +08:00
|
|
|
}
|
|
|
|
|
}
|