mirror of
https://github.com/logos-storage/nim-json-rpc.git
synced 2026-01-10 01:23:11 +00:00
11 lines
252 B
Nim
11 lines
252 B
Nim
import ../eth-rpc/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." |