Skip to content

Commit 28d87bb

Browse files
authored
chore: add rosetta to example construct library (aws#19498)
---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent db14835 commit 28d87bb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Fixture with packages imported, but nothing else
2+
import { Construct } from 'constructs';
3+
import { Stack } from '@aws-cdk/core';
4+
5+
class Fixture extends Stack {
6+
constructor(scope: Construct, id: string) {
7+
super(scope, id);
8+
9+
/// here
10+
}
11+
}

0 commit comments

Comments
 (0)