2021-08-19 12:55:45 +00:00
|
|
|
import { IObject } from './type';
|
|
|
|
import { IRemoteUser } from '@/models/entities/user';
|
|
|
|
import { performActivity } from './kernel/index';
|
2018-04-08 20:02:52 +00:00
|
|
|
|
2019-09-26 19:58:28 +00:00
|
|
|
export default async (actor: IRemoteUser, activity: IObject): Promise<void> => {
|
|
|
|
await performActivity(actor, activity);
|
2018-04-08 20:02:52 +00:00
|
|
|
};
|