mirror of
https://github.com/logos-storage/nim-json-rpc.git
synced 2026-01-13 02:53:07 +00:00
11 lines
248 B
Nim
11 lines
248 B
Nim
import ../src/rpcserver, asyncdispatch
|
|
|
|
when isMainModule:
|
|
echo "Initialising server..."
|
|
# create on localhost, default port
|
|
var srv = newRpcServer("")
|
|
echo "Server started."
|
|
asyncCheck srv.serve()
|
|
runForever()
|
|
|
|
echo "Server stopped." |