Skip to content

Commit

Permalink
move to src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ebisbe committed Jul 6, 2024
1 parent 4a68f5f commit 9e48410
Show file tree
Hide file tree
Showing 3 changed files with 4 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: "functions/list.create",
handler: "src/functions/list.create",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -33,7 +33,7 @@ const serverlessConfig: Serverless = {
],
},
getList: {
handler: "functions/list.get",
handler: "src/functions/list.get",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -47,7 +47,7 @@ const serverlessConfig: Serverless = {
],
},
updateList: {
handler: "functions/list.update",
handler: "src/functions/list.update",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand All @@ -61,7 +61,7 @@ const serverlessConfig: Serverless = {
],
},
removeList: {
handler: "functions/list.remove",
handler: "src/functions/list.remove",
environment: {
ddb_table: { Ref: "DdbTable" },
},
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9e48410

Please sign in to comment.