pub(crate) fn parse_flake_input(url: &str) -> (String, String)Expand description
@brief Parses a flake URL into a (key, url) tuple. @details Example: “github:owner/repo” -> (“repo”, “github:owner/repo”) Example: “github:owner/repo~branch” -> (“repo”, “github:owner/repo~branch”) @param url The flake URL to parse. @return A tuple containing the key and the original URL.