Tag workloads

This commit is contained in:
Mubelotix
2025-08-25 11:50:27 +02:00
parent 8240b76267
commit 3a2ec5f576
29 changed files with 52 additions and 13 deletions

View File

@ -1,12 +1,12 @@
use std::collections::BTreeMap;
use serde::Deserialize;
use std::collections::BTreeMap;
use crate::common::assets::Asset;
/// A test workload.
/// Not to be confused with [a bench workload](crate::bench::workload::Workload).
#[derive(Deserialize)]
pub struct Workload {
pub struct TestWorkload {
pub name: String,
pub assets: BTreeMap<String, Asset>,
}