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