AHH
This commit is contained in:
parent
947a139790
commit
891d115276
|
|
@ -7,7 +7,7 @@ const app = express.Router()
|
||||||
|
|
||||||
app.get("/", async (request, response) => {
|
app.get("/", async (request, response) => {
|
||||||
let jobId = randomUUID()
|
let jobId = randomUUID()
|
||||||
const client = await soap.createClientAsync(__dirname + "/../../lib/RCCService.wsdl", {}, "http://144.126.135.224:64989/")
|
const client = await soap.createClientAsync(__dirname + "/../../lib/RCCService.wsdl", {}, "http://127.0.0.1:64989/")
|
||||||
const result = await client.OpenJobExAsync({
|
const result = await client.OpenJobExAsync({
|
||||||
job: {
|
job: {
|
||||||
id: jobId,
|
id: jobId,
|
||||||
|
|
@ -17,7 +17,7 @@ app.get("/", async (request, response) => {
|
||||||
},
|
},
|
||||||
script: {
|
script: {
|
||||||
name: jobId,
|
name: jobId,
|
||||||
script: readFileSync(__dirname + "/../../lua/user.lua", { encoding: "utf-8" }),
|
script: readFileSync(__dirname + "/../../lua/user_headshot.lua", { encoding: "utf-8" }),
|
||||||
arguments: {
|
arguments: {
|
||||||
LuaValue: [
|
LuaValue: [
|
||||||
{
|
{
|
||||||
|
|
@ -26,7 +26,7 @@ app.get("/", async (request, response) => {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "LUA_TSTRING",
|
type: "LUA_TSTRING",
|
||||||
value: "Avatar",
|
value: "Headshot",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "LUA_TSTRING",
|
type: "LUA_TSTRING",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue