mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
/// <reference path="../../adonisrc.ts" />
|
|
|
|
import { api } from '#adonisjs/api';
|
|
import { createTuyau } from '@tuyau/client';
|
|
|
|
export const tuyauAbortController = new AbortController();
|
|
export const tuyau = createTuyau({
|
|
api,
|
|
baseUrl: 'http://localhost:3333',
|
|
signal: tuyauAbortController.signal,
|
|
});
|