summaryrefslogtreecommitdiff
path: root/lib/server/activity/index.ts
blob: fc7c9900e2d46c1ed7171a5bb325a4aab349aae7 (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';
export * from './fourohfour';