// Copyright Pit Kleyersburg // SPDX-License-Identifier: MIT OR Apache-2.0 // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified or distributed // except according to those terms. use std::path::PathBuf; pub fn resource(segment: &str) -> Option { let mut p = PathBuf::from(env!("CARGO_MANIFEST_DIR")); p.push("resources/test"); p.push(segment); p.to_str().map(|s| s.to_owned()) }