Write the build start to the database.

This commit is contained in:
Tom Alexander
2026-02-16 20:42:03 -05:00
parent ab1f86384b
commit c4c811a099
5 changed files with 40 additions and 51 deletions

View File

@@ -121,6 +121,11 @@ impl TargetConfig {
pub(crate) fn get_attr(&'_ self) -> Result<&String, CustomError> {
Ok(&self.attr)
}
/// The name to identify this target
pub(crate) fn get_name(&'_ self) -> Result<&String, CustomError> {
Ok(&self.name)
}
}
fn hex_string(data: &[u8]) -> String {