mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-30 02:26:56 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
import http from './processors/http';
|
|
import { ILocalUser } from '../models/user';
|
|
|
|
export function createHttpJob(data: any) {
|
|
return http(data, () => {});
|
|
}
|
|
|
|
export function deliver(user: ILocalUser, content: any, to: any) {
|
|
createHttpJob({
|
|
type: 'deliver',
|
|
user,
|
|
content,
|
|
to
|
|
});
|
|
}
|