implemented IDStore

This commit is contained in:
2025-04-12 14:36:33 +02:00
parent 32f3124374
commit c7dbbc1b43
6 changed files with 387 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
use regex::Regex;
pub fn ParseLine(line: &str) -> Option<String> {
pub fn parse_line(line: &str) -> Option<String> {
let regex = Regex::new(r"(?m)^\[\+\] UID.... (.*)$").unwrap();
let result = regex.captures(line);