Hi, I have the following question. Thanks in advance.
For sending realtime notification to frontend, I need websocket server. For this, I can create gateway for 'notification api' using 'nest g resource notification'.
However, I also need REST API for notification (update and list up notifications). For this I need to create REST API for notification api. I can do the same 'nest g resource notification', but choosing REST this time.
Now I have two different APIs for one resource, 'notification'.
Can I use one API directory for notification?