1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-07-19 23:37:46 +00:00

Add missing REUSE metadata

This commit is contained in:
Joshua Goins 2025-07-08 22:41:51 -04:00
parent c0d3df99c3
commit 65d85e51fa
4 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
mod resolver;
pub use resolver::ResourceResolver;

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
use crate::ByteBuffer;
use super::Resource;

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
use std::{
collections::HashMap,
fs::{self, DirEntry, ReadDir},

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
use std::path::PathBuf;
use crate::ByteBuffer;