Change 'wsabi' dir to 'wsabipkg'
Anirudh Oppiliappan x@icyphox.sh
Thu, 16 Jul 2020 21:07:10 +0530
2 files changed,
7 insertions(+),
1 deletions(-)
M
src/wsabi.nim
→
src/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") +