Move rgp module into a separate file

This commit is contained in:
Dirkjan Ochtman 2024-05-27 10:57:20 +02:00
parent 0d806303dd
commit 82f9ef79ac
2 changed files with 10 additions and 12 deletions

View File

@ -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";

View File

@ -52,21 +52,11 @@ pub mod xml;
pub mod extensions { pub mod extensions {
pub mod consolidate; pub mod consolidate;
pub mod frnic;
pub mod low_balance; pub mod low_balance;
pub mod namestore; pub mod namestore;
pub mod rgp;
/// 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 secdns; pub mod secdns;
pub mod frnic;
} }
pub use client::EppClient; pub use client::EppClient;