Skip to content

Commit

Permalink
adjust imports
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanPan342 committed Jul 9, 2020
1 parent 3935c3d commit 86aca91
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-appsync/lib/graphqlapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
CfnGraphQLApi,
CfnGraphQLSchema,
} from './appsync.generated';
import { DynamoDbDataSource, HttpDataSource, LambdaDataSource, NoneDataSource } from './dataSource';
import { DynamoDbDataSource, HttpDataSource, LambdaDataSource, NoneDataSource } from './data-source';

/**
* enum with all possible values for AppSync authorization type
Expand Down
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-appsync/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// AWS::AppSync CloudFormation Resources:
export * from './appsync.generated';
export * from './key';
export * from './dataSource';
export * from './mappingTemplate';
export * from './data-source';
export * from './mapping-template';
export * from './resolver';
export * from './graphqlapi';
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-appsync/lib/resolver.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Construct, IResolvable } from '@aws-cdk/core';
import { CfnResolver } from './appsync.generated';
import { BaseDataSource } from './dataSource';
import { BaseDataSource } from './data-source';
import { GraphQLApi } from './graphqlapi';
import { MappingTemplate } from './mappingTemplate';
import { MappingTemplate } from './mapping-template';
/**
* Basic properties for an AppSync resolver
*/
Expand Down

0 comments on commit 86aca91

Please sign in to comment.