1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 05:23:16 +02:00

Packaging

- Re-worked the `birchwood.client` module into a package which publically imports the `birchwood.client.core` package
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-08 17:30:39 +02:00
parent 39cbcbace6
commit d0dd315e55
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
module birchwood.client;
module birchwood.client.core;
import std.socket : Socket, SocketException, Address, getAddress, SocketType, ProtocolType, SocketOSException;
import std.socket : SocketFlags;

View File

@ -0,0 +1,3 @@
module birchwood.client;
public import birchwood.client.core;