Closed mildronize closed 7 months ago
import { initNammatham } from '@nammatham/core'; import { AzureFunctionsAdapter } from '@nammatham/azure-functions'; const n = initNammatham.create(new AzureFunctionsAdapter()); export const func = n.func; export default func .httpGet('hello') .handler(({ res }) => res.text('OK'));
Done with #131