mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-07-10 04:57:28 +00:00
6 lines
140 B
Rust
6 lines
140 B
Rust
use pbs_api_types::Userid;
|
|
|
|
pub fn term_aad(userid: &Userid, path: &str, port: u16) -> String {
|
|
format!("{}{}{}", userid, path, port)
|
|
}
|