Skip to content

Commit 43b0415

Browse files
authored
Update source header in source files
1 parent 1531c4b commit 43b0415

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

android/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// This Source Code Form is subject to the terms of the Mozilla Public
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
//
4+
//
55
// Copyright 2024 — by The Lindemans, LLC
66
//
7+
//
78
use core::BluetoothManager;
89
pub struct AndroidBluetoothManager;
910

core/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// This Source Code Form is subject to the terms of the Mozilla Public
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
//
4+
//
55
// Copyright 2024 — by The Lindemans, LLC
66
//
7+
//
78
pub trait BluetoothManager {
89
fn connect(&self) -> Result<(), String>;
910
fn read_data(&self) -> Result<Vec<u8>, String>;

gui/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// This Source Code Form is subject to the terms of the Mozilla Public
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
//
4+
//
55
// Copyright 2024 — by The Lindemans, LLC
66
//
7+
//
78
use leptos::*;
89
use wasm_bindgen::prelude::*;
910
use web_sys::{window, HtmlLinkElement, HtmlMetaElement};

ios/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// This Source Code Form is subject to the terms of the Mozilla Public
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
//
4+
//
55
// Copyright 2024 — by The Lindemans, LLC
66
//
7+
//
78
use core::BluetoothManager;
89
pub struct IosBluetoothManager;
910

main/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// This Source Code Form is subject to the terms of the Mozilla Public
22
// License, v. 2.0. If a copy of the MPL was not distributed with this
33
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
//
4+
//
55
// Copyright 2024 — by The Lindemans, LLC
66
//
7+
//
78
#[cfg(target_os = "android")]
89
use android_io::connect_bluetooth;
910

0 commit comments

Comments
 (0)