diff --git a/source/doap/package.d b/source/doap/package.d index d13880d..3fe777c 100644 --- a/source/doap/package.d +++ b/source/doap/package.d @@ -1,7 +1,25 @@ +/** + * doap is a CoAP library for the D programming language. + */ module doap; +/** + * CoAP client implementation + */ public import doap.client; +/** + * CoAP server implementation + */ +public import doap.server; + +/** + * CoAP packet format serialization + * and deserialization + */ public import doap.protocol; +/** + * Exception definitions + */ public import doap.exceptions; \ No newline at end of file diff --git a/source/doap/server/package.d b/source/doap/server/package.d new file mode 100644 index 0000000..5bf1db0 --- /dev/null +++ b/source/doap/server/package.d @@ -0,0 +1 @@ +module doap.server; \ No newline at end of file