fix(striker-ui-api): add get host name to access module

main
Tsu-ba-me 2 years ago
parent b58a1cb63a
commit 7b0a7e711d
  1. 17
      striker-ui-api/src/lib/accessModule.ts

@ -148,6 +148,22 @@ const getAnvilData = <HashType>(
spawnSyncOptions,
).stdout;
const getLocalHostName = () => {
let result: string;
try {
result = execModuleSubroutine('host_name', {
subModuleName: 'Get',
}).stdout;
} catch (subError) {
throw new Error(`Failed to get local host name; CAUSE: ${subError}`);
}
shout(`localHostName=${result}`);
return result;
};
const getLocalHostUUID = () => {
let result: string;
@ -201,6 +217,7 @@ export {
dbSubRefreshTimestamp,
dbWrite,
getAnvilData,
getLocalHostName,
getLocalHostUUID,
getPeerData,
execModuleSubroutine as sub,

Loading…
Cancel
Save