package test.pkg;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;

public class TestService extends Service {

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

}
