10 lines
125 B
C++
10 lines
125 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace utils::identity
|
||
|
{
|
||
|
std::string get_sys_username();
|
||
|
std::string get_sys_uuid();
|
||
|
}
|