diff --git a/krilltest/src/environment/core.rs b/krilltest/src/environment/core.rs index 3baca937..1d1efe04 100644 --- a/krilltest/src/environment/core.rs +++ b/krilltest/src/environment/core.rs @@ -81,5 +81,9 @@ impl Environment { pub fn nginx(&self) -> &NginxServer { &self.nginx } -} + /// Returns a reference to the Routinator controller. + pub fn routinator(&self) -> &Routinator { + &self.routinator + } +}