Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashko Stubailo committed Oct 23, 2016
1 parent 8d63537 commit 2bbd0af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 2 additions & 4 deletions packages/graphql-server-express/src/connectApollo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { apolloExpress, graphiqlExpress } from './expressApollo';

const apolloConnect = apolloExpress;
const graphiqlConnect = graphiqlExpress;

export { apolloConnect, graphiqlConnect };
export const apolloConnect = apolloExpress;
export const graphiqlConnect = graphiqlExpress;
13 changes: 11 additions & 2 deletions packages/graphql-server-express/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
export { ExpressApolloOptionsFunction, ExpressHandler, apolloExpress, graphiqlExpress } from './expressApollo';
export { apolloConnect, graphiqlConnect } from './connectApollo';
export {
ExpressApolloOptionsFunction,
ExpressHandler,
apolloExpress,
graphiqlExpress,
} from './expressApollo';

export {
apolloConnect,
graphiqlConnect,
} from './connectApollo';

0 comments on commit 2bbd0af

Please sign in to comment.