GraphQL?

2021-04-26 Thread jangko
now we have a graphql implementation in Nim . it works with `query` and `mutation` part of graphql, have a nice API for custom scalar and simple resolver interface. shipped with a http server, a playground http server, and a http client. features that

Creating Custom DLLMain using MSVC

2021-01-03 Thread jangko
this workaround works but it also rely on assumption about how the codegen works, may not works in the future. when defined(vcc): {.emit: "N_LIB_EXPORT N_CDECL(void, NimMain)(void);".} else: proc NimMain() {.cdecl, importc.} proc DllMain(hModule: HANDLE,