blob: 82d8ec46368bd6e41b94c64a7963e87e223fb807 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type {
ITraceable,
PenguenoRequest,
PenguenoResponse,
ServerTrace,
} from "@emprespresso/pengueno";
export interface IActivity {
(req: ITraceable<PenguenoRequest, ServerTrace>): Promise<PenguenoResponse>;
}
export * from "./health.ts";
export * from "./fourohfour.ts";
|