From 2a739f9dc618eb49d1919d0be64a7d650ef25d3b Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Thu, 6 Aug 2026 09:43:26 +0200 Subject: [PATCH] Add fn missed in previous commit. --- krilltest/src/environment/core.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 + } +}