This commit is contained in:
syuilo 2018-04-09 05:02:52 +09:00
parent 8089200d69
commit d760f41da9
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);
};