Tooting of text toots

This commit is contained in:
Grishka
2022-01-17 21:50:48 +03:00
parent dfbc1fd2e2
commit b3a99e0764
13 changed files with 260 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
package org.joinmastodon.android;
import com.squareup.otto.AsyncBus;
/**
* Created by grishka on 24.08.15.
*/
public class E{
private static AsyncBus bus=new AsyncBus();
public static void post(Object event){
bus.post(event);
}
public static void register(Object listener){
bus.register(listener);
}
public static void unregister(Object listener){
bus.unregister(listener);
}
}