From 4f3d748517a795331973a5301f4f7d08ed7152e8 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Tue, 5 Nov 2024 20:34:39 +0100 Subject: [PATCH] feat: embed UKA profile --- src/profile.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/profile.rs b/src/profile.rs index 7266d5e..9b5d8ed 100644 --- a/src/profile.rs +++ b/src/profile.rs @@ -33,6 +33,7 @@ pub struct Profile { impl Profile { pub fn embedded_profile(name: &str) -> Result { let s = match name { + "UKA" => include_str!("../examples/dnpm-uka.yml"), "UKM" => include_str!("../examples/dnpm-ukm.yml"), "UKR" => include_str!("../examples/dnpm-ukr.yml"), "UKW" => include_str!("../examples/dnpm-ukw.yml"),