Skip to content

Commit

Permalink
Update source header in source files
Browse files Browse the repository at this point in the history
  • Loading branch information
bythelindemans-actions-bot[bot] authored Sep 13, 2024
1 parent f934318 commit 830232e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion android/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
//
// Copyright 2024 — by The Lindemans, LLC
//
//
//
//
//
//
use core::BluetoothManager;
pub struct AndroidBluetoothManager;

Expand Down
3 changes: 2 additions & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
//
// Copyright 2024 — by The Lindemans, LLC
//
//
//
//
//
//
pub trait BluetoothManager {
fn connect(&self) -> Result<(), String>;
fn read_data(&self) -> Result<Vec<u8>, String>;
Expand Down
3 changes: 2 additions & 1 deletion gui/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
//
// Copyright 2024 — by The Lindemans, LLC
//
//
//
//
//
//
use leptos::*;
use wasm_bindgen::prelude::*;
use web_sys::{window, HtmlLinkElement, HtmlMetaElement};
Expand Down
3 changes: 2 additions & 1 deletion ios/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
//
// Copyright 2024 — by The Lindemans, LLC
//
//
//
//
//
//
use core::BluetoothManager;
pub struct IosBluetoothManager;

Expand Down
3 changes: 2 additions & 1 deletion main/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//
//
// Copyright 2024 — by The Lindemans, LLC
//
//
//
//
//
//
#[cfg(target_os = "android")]
use android_io::connect_bluetooth;

Expand Down

0 comments on commit 830232e

Please sign in to comment.