This commit is contained in:
syuilo 2018-04-09 05:02:52 +09:00
parent 08beb45935
commit 536277122d
13 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import { Object } from './type';
import { IRemoteUser } from '../../models/user';
import kernel from './kernel';
export default async (actor: IRemoteUser, activity: Object): Promise<void> => {
await kernel(actor, activity);
};