Skip to content

Commit

Permalink
Add missing copyright notices
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Bottriell <[email protected]>
  • Loading branch information
rydrman committed Jan 14, 2025
1 parent f775b5c commit f9fb300
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/spk-workspace/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) Contributors to the SPK project.
// SPDX-License-Identifier: Apache-2.0
// https://github.com/spkenv/spk

use std::path::PathBuf;

#[derive(thiserror::Error, miette::Diagnostic, Debug)]
Expand Down
4 changes: 4 additions & 0 deletions crates/spk-workspace/src/file.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) Contributors to the SPK project.
// SPDX-License-Identifier: Apache-2.0
// https://github.com/spkenv/spk

use std::path::Path;

use serde::{Deserialize, Serialize};
Expand Down
4 changes: 4 additions & 0 deletions crates/spk-workspace/src/file_test.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) Contributors to the SPK project.
// SPDX-License-Identifier: Apache-2.0
// https://github.com/spkenv/spk

use rstest::{fixture, rstest};

use super::WorkspaceFile;
Expand Down
5 changes: 5 additions & 0 deletions crates/spk-workspace/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright (c) Contributors to the SPK project.
// SPDX-License-Identifier: Apache-2.0
// https://github.com/spkenv/spk

pub mod error;
mod file;
mod workspace;

pub use file::WorkspaceFile;

0 comments on commit f9fb300

Please sign in to comment.