mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use tribufu::TribufuApi;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let user_agent = TribufuApi::get_user_agent();
|
|
println!("{}", user_agent);
|
|
}
|