Skip to content

Commit

Permalink
fix: fn paths where incorrect after code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ebisbe committed Jul 7, 2024
1 parent d9fc365 commit a1a9452
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions serverless.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const serverlessConfig: Serverless = {

functions: {
createList: {
handler: "src/functions/list.create",
handler: "src/functions/list/create.handler",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -33,7 +33,7 @@ const serverlessConfig: Serverless = {
],
},
getList: {
handler: "src/functions/list.get",
handler: "src/functions/list/get.handler",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -47,7 +47,7 @@ const serverlessConfig: Serverless = {
],
},
updateList: {
handler: "src/functions/list.update",
handler: "src/functions/list/update.handler",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -61,7 +61,7 @@ const serverlessConfig: Serverless = {
],
},
removeList: {
handler: "src/functions/list.remove",
handler: "src/functions/list/remove.handler",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand Down
1 change: 1 addition & 0 deletions src/functions/list/get.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const handler = () => {};
1 change: 1 addition & 0 deletions src/functions/list/remove.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const handler = () => {};
1 change: 1 addition & 0 deletions src/functions/list/update.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const handler = () => {};

0 comments on commit a1a9452

Please sign in to comment.