Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5199 from LiskHQ/5189-migrate-to-ts-app-network
Browse files Browse the repository at this point in the history
Update application/network to be typescript - Closes #5189
  • Loading branch information
shuse2 authored Apr 28, 2020
2 parents 67a6f13 + c9e6428 commit 59ef823
Show file tree
Hide file tree
Showing 12 changed files with 281 additions and 155 deletions.
2 changes: 0 additions & 2 deletions framework/src/application/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ const registerProcessHooks = app => {

process.once('SIGINT', () => app.shutdown(1));

process.once('cleanup', (error, code) => app.shutdown(code, error));

process.once('exit', (error, code) => app.shutdown(code, error));
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,4 @@
* Removal or modification of this copyright notice is prohibited.
*/

'use strict';

const Network = require('./network');

module.exports = {
Network,
};
export { Network } from './network';
Loading

0 comments on commit 59ef823

Please sign in to comment.