Created
May 16, 2021 15:51
-
-
Save dzmitry-kankalovich/c75c6393369a196626c2ce0d799cd622 to your computer and use it in GitHub Desktop.
Notion RSS - foundation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from '@aws-cdk/core'; | |
export class NotionRssFeedStack extends cdk.Stack { | |
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
// your stack definition would go here | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment