Reinstate contact module as a separate file

This commit is contained in:
Dirkjan Ochtman 2021-12-09 12:38:42 +01:00 committed by masalachai
parent defd7cff9b
commit 95e21eb9ea
2 changed files with 8 additions and 9 deletions

7
src/contact.rs Normal file
View File

@ -0,0 +1,7 @@
pub mod check;
pub mod create;
pub mod delete;
pub mod info;
pub mod update;
pub const XMLNS: &str = "urn:ietf:params:xml:ns:contact-1.0";

View File

@ -99,15 +99,7 @@ pub mod request;
pub mod response; pub mod response;
pub mod xml; pub mod xml;
pub mod contact { pub mod contact;
pub mod check;
pub mod create;
pub mod delete;
pub mod info;
pub mod update;
pub const XMLNS: &str = "urn:ietf:params:xml:ns:contact-1.0";
}
pub mod extensions { pub mod extensions {
pub mod consolidate; pub mod consolidate;