Hi everyone
I am new to programming in nim and I am trying to implement a login process where the least privilege is being used at all times. A scenario would be something like this
In parent:
In child:
I have seen that nim usually use threads/channels to communicate but was thinking more on the process level so increase isolation. Thus, I was wondering if I should use the above solution or is there a better alternative to communicate between the process after running fork() using the nim's standard library.
Cheers and thanks for the help!