From 2738e465ba0509d6109a6e0540f0979c91ffe26e Mon Sep 17 00:00:00 2001 From: Avril Date: Sun, 2 Aug 2020 01:08:54 +0100 Subject: [PATCH] reorganise 2 --- src/config/parse.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/parse.rs b/src/config/parse.rs index 5b7c9ab..74b4de3 100644 --- a/src/config/parse.rs +++ b/src/config/parse.rs @@ -4,5 +4,7 @@ use super::*; /// Parse a single config file pub fn global(to: &mut Config, path: impl AsRef) -> Result<(), error::Error> { - todo!() + let path = path.as_ref(); + + todo!(); }