package com.fly.tour.test.presenter; import android.util.Log; import javax.inject.Inject; /** * Description:
* Author: mxdl
* Date: 2019/5/31
* Version: V1.0.0
* Update:
*/ public class MainPresenter { @Inject public MainPresenter() { } public void prinitHelloWorld(){ Log.v("MYTAG","hello world"); } }