nostril/source/conection.d
Tristan B. Velloza Kildaire 55db5d0bea Connection
- This stub class is to represent a new connection from a client

Server

- This stub class is to represent a server which holds connections

BackingStore

- Abstract type representing the storage for saving and retrieving events
2023-02-22 07:24:33 +02:00

14 lines
193 B
D

module nostril.conection;
import vibe.vibe : WebSocket;
public class Connection
{
/* Client socket */
private WebSocket ws;
this(WebSocket ws)
{
this.ws = ws;
}
}