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