This website requires JavaScript.
Explore
Help
Sign In
LumeWeb
/
relay
Watch
1
Star
0
Fork
You've already forked relay
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
660bb85203
relay
/
src
/
util.ts
5 lines
90 B
TypeScript
Raw
Normal View
History
Unescape
Escape
*Initial version
2022-06-27 17:53:00 +00:00
export
function
errorExit
(
msg
:
string
)
:
void
{
*Switch to using a dynamic dns domain *Add letsencrypt support *Add afraid.org support *Refactor env error checking *Add dynamic ip polling and updating
2022-07-04 21:22:48 +00:00
console
.
error
(
msg
)
;
*Initial version
2022-06-27 17:53:00 +00:00
process
.
exit
(
1
)
;
}