mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 21:06:27 +01:00
8 lines
229 B
TypeScript
8 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);
|
||
|
};
|