saorsa_core/utils.rs
1// Copyright 2024 Saorsa Labs Limited
2//
3// This software is dual-licensed under:
4// - GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)
5// - Commercial License
6//
7// For AGPL-3.0 license, see LICENSE-AGPL-3.0
8// For commercial licensing, contact: saorsalabs@gmail.com
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under these licenses is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
14//! Utilities module placeholder
15//!
16//! This module will contain utility functions and types.
17
18/// Placeholder utility functions
19pub mod util_functions {
20 /// Get system information (placeholder)
21 pub fn get_system_info() -> String {
22 "placeholder_system_info".to_string()
23 }
24}