blob: fa0a6b22c9ddc53da60c1ae818caf9f5b052e48c (
plain)
1
2
3
4
5
6
7
8
|
import type { ITraceable, PenguenoRequest, PenguenoResponse, ServerTrace } from '@emprespresso/pengueno';
export interface IActivity {
(req: ITraceable<PenguenoRequest, ServerTrace>): Promise<PenguenoResponse>;
}
export * from './health.js';
export * from './fourohfour.js';
|