const api = new Api(stack, "MarukiApi", {
routes: {
"GET /": "functions/lambda.get_developers",
"GET /developer/{id}/entries": "functions/lambda.get_developer_entries",
},
cors: {
allowMethods: ["ANY"],
allowOrigins: ["*"]
},
}