Move rgp module into a separate file
This commit is contained in:
parent
0d806303dd
commit
82f9ef79ac
|
@ -0,0 +1,8 @@
|
|||
//! Mapping for the Registry Grace Period extension
|
||||
//!
|
||||
//! As described in [RFC 3915](https://tools.ietf.org/html/rfc3915).
|
||||
|
||||
pub mod report;
|
||||
pub mod request;
|
||||
|
||||
pub const XMLNS: &str = "urn:ietf:params:xml:ns:rgp-1.0";
|
14
src/lib.rs
14
src/lib.rs
|
@ -52,21 +52,11 @@ pub mod xml;
|
|||
|
||||
pub mod extensions {
|
||||
pub mod consolidate;
|
||||
pub mod frnic;
|
||||
pub mod low_balance;
|
||||
pub mod namestore;
|
||||
|
||||
/// Mapping for the Registry Grace Period extension
|
||||
///
|
||||
/// As described in [RFC 3915](https://tools.ietf.org/html/rfc3915).
|
||||
pub mod rgp {
|
||||
pub mod report;
|
||||
pub mod request;
|
||||
|
||||
pub const XMLNS: &str = "urn:ietf:params:xml:ns:rgp-1.0";
|
||||
}
|
||||
pub mod rgp;
|
||||
pub mod secdns;
|
||||
|
||||
pub mod frnic;
|
||||
}
|
||||
|
||||
pub use client::EppClient;
|
||||
|
|
Loading…
Reference in New Issue