summaryrefslogtreecommitdiff
path: root/systems/_asset/test
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-14 00:17:02 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-14 00:17:02 +0800
commit709629d5d3ab856d9711aedbe32ceaafac5369af (patch)
tree98be25d144bd2c451c5c3dc0df215c7b010db9d9 /systems/_asset/test
parentd213a4258ff6dd3475dbde8c98440735bade19fd (diff)
Add framework system and refactor module exports
Diffstat (limited to 'systems/_asset/test')
-rw-r--r--systems/_asset/test/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/systems/_asset/test/src/lib.rs b/systems/_asset/test/src/lib.rs
index 4aad777..4b62028 100644
--- a/systems/_asset/test/src/lib.rs
+++ b/systems/_asset/test/src/lib.rs
@@ -13,8 +13,6 @@ pub struct FooData {
}
impl RWData<FooData> for FooData {
- type DataType = FooData;
-
async fn read(path: &PathBuf) -> Result<FooData, DataReadError> {
let content = tokio::fs::read_to_string(path)
.await