Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr committed Feb 8, 2024
1 parent 3be27a0 commit 030b0b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dynamodb.w
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,11 @@ pub class DynamoDBTableAws {
}

pub class DynamoDBTable {
tableSim: DynamoDBTableSim; // TODO: this is actually optional
tableAws: DynamoDBTableAws; // TODO: this is actually optional
// TODO: these fields are actually optional. workaround for:
// https://github.com/winglang/wing/issues/5636
// https://github.com/winglang/wing/issues/5647
tableSim: DynamoDBTableSim;
tableAws: DynamoDBTableAws;

new(props: DynamoDBTableProps) {
let target = util.env("WING_TARGET");
Expand Down

0 comments on commit 030b0b3

Please sign in to comment.