diff --git a/libparsec/crates/client/src/device/mod.rs b/libparsec/crates/client/src/device/mod.rs index afee73fcd87..1d4f7a450b8 100644 --- a/libparsec/crates/client/src/device/mod.rs +++ b/libparsec/crates/client/src/device/mod.rs @@ -1,3 +1,5 @@ +// Parsec Cloud (https://parsec.cloud) Copyright (c) BUSL-1.1 2016-present Scille SAS + use libparsec_types::{anyhow, thiserror, AvailableDevice}; use crate::ClientConfig; diff --git a/libparsec/crates/platform_storage/src/native/cleanup.rs b/libparsec/crates/platform_storage/src/native/cleanup.rs index 5247584bbee..c23e03da380 100644 --- a/libparsec/crates/platform_storage/src/native/cleanup.rs +++ b/libparsec/crates/platform_storage/src/native/cleanup.rs @@ -1,3 +1,5 @@ +// Parsec Cloud (https://parsec.cloud) Copyright (c) BUSL-1.1 2016-present Scille SAS + use std::path::Path; use libparsec_types::{anyhow, DeviceID}; diff --git a/libparsec/crates/platform_storage/src/web/cleanup.rs b/libparsec/crates/platform_storage/src/web/cleanup.rs index ce25754e531..8fbe7531541 100644 --- a/libparsec/crates/platform_storage/src/web/cleanup.rs +++ b/libparsec/crates/platform_storage/src/web/cleanup.rs @@ -1,3 +1,5 @@ +// Parsec Cloud (https://parsec.cloud) Copyright (c) BUSL-1.1 2016-present Scille SAS + pub async fn remove_device_data(data_base_dir: &Path, device_id: &DeviceID) -> anyhow::Result<()> { todo!() } diff --git a/libparsec/crates/platform_storage/tests/unit/native/cleanup.rs b/libparsec/crates/platform_storage/tests/unit/native/cleanup.rs index 3761e950112..341430f1dd3 100644 --- a/libparsec/crates/platform_storage/tests/unit/native/cleanup.rs +++ b/libparsec/crates/platform_storage/tests/unit/native/cleanup.rs @@ -1,3 +1,5 @@ +// Parsec Cloud (https://parsec.cloud) Copyright (c) BUSL-1.1 2016-present Scille SAS + use libparsec_tests_fixtures::prelude::{parsec_test, tmp_path, TestbedEnv, TmpPath}; use libparsec_types::VlobID;