mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 00:23:08 +02:00
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
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);
|
|
};
|