mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
12 lines
227 B
Rust
12 lines
227 B
Rust
// Copyright (c) TribuFu. All Rights Reserved
|
|
|
|
//! TribuFu SDK.
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub fn Hello(input: String) -> String {
|
|
return format!("Hello {}", input);
|
|
}
|