Create test workload

This commit is contained in:
Mubelotix
2025-08-25 11:43:11 +02:00
parent 78e98a4e6c
commit 8240b76267
10 changed files with 28 additions and 12 deletions

View File

@ -0,0 +1,12 @@
use std::collections::BTreeMap;
use serde::Deserialize;
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 name: String,
pub assets: BTreeMap<String, Asset>,
}