Skip to content

Commit 47c216c

Browse files
committed
Add api modules doc comments
1 parent 30fdfe7 commit 47c216c

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/api/email.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Module with client and endpoint functions for the Email channel.
2+
13
use std::collections::HashMap;
24
use std::io;
35

src/api/sms.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Module with client and endpoint functions for the SMS channel.
2+
13
use std::collections::HashMap;
24

35
use validator::Validate;

src/api/whatsapp.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Module with client and endpoint functions for the WhatsApp channel.
2+
13
use std::collections::HashMap;
24

35
use reqwest::{Method, Response};

src/model/email.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Models for calling Email endpoints.
2+
13
use serde_derive::{Deserialize, Serialize};
24
use validator::Validate;
35

0 commit comments

Comments
 (0)