This website works better with JavaScript.
Home
Explore
Help
Sign In
Autoplex
/
autoplex-legacy
Watch
1
Star
0
Fork
0
Code
Issues
1
Pull Requests
0
Projects
0
Releases
1
Wiki
Activity
Browse Source
Use the new exec function in Request and Seeker
dev
David Ludwig
4 years ago
parent
c629768715
commit
0722e99dc0
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
services/request/src/server/index.ts
+1
-1
services/seeker/src/index.ts
+ 1
- 1
services/request/src/server/index.ts
View File
@ -14,4 +14,4 @@ let app = new Application(appKey);
/
*
*
*
Start
the
application
*
/
app
.
exec
(
)
;
app
.
exec
(
)
.
then
(
process
.
exit
)
;
+ 1
- 1
services/seeker/src/index.ts
View File
@ -4,4 +4,4 @@ import Application from "./Application";
let
app
=
new
Application
(
)
;
// Start the application
app
.
exec
(
)
;
app
.
exec
(
)
.
then
(
process
.
exit
)
;
Write
Preview
Loading…
Cancel
Save