all repos — wsabi @ a7da3efc1b09d7391af3df752d37f68850a7f299

websocket proxy that sends stats to statsd

Change 'wsabi' dir to 'wsabipkg'
Anirudh Oppiliappan x@icyphox.sh
Thu, 16 Jul 2020 21:07:10 +0530
commit

a7da3efc1b09d7391af3df752d37f68850a7f299

parent

9066bd7031c6e80bfde3ac25ae3151d6b602186c

2 files changed, 7 insertions(+), 1 deletions(-)

jump to
M src/wsabi.nimsrc/wsabi.nim

@@ -1,5 +1,5 @@

import asyncnet, asyncdispatch -import wsabi/utils +import wsabipkg/utils type Server = ref object
A src/wsabipkg/utils.nim

@@ -0,0 +1,6 @@

+type + EKeyboardInterrupt* = object of Exception + +proc handleCtrlC*() {.noconv.} = + raise newException(EKeyboardInterrupt, "Keyboard Interrupt") +