Skip to content

Commit

Permalink
Update binding example
Browse files Browse the repository at this point in the history
  • Loading branch information
abichinger committed Apr 15, 2024
1 parent bdb8d5c commit 43418e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v3/examples/binding/assets/bindings/main/GreetService.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as data from "../data/models.js";
* @returns {Promise<string>}
*/
export function Greet(name, ...counts) {
return Call.ByName("main.GreetService.Greet", name, counts);
return Call.ByID(1411160069, name, counts);
}

/**
Expand All @@ -22,5 +22,5 @@ export function Greet(name, ...counts) {
* @returns {Promise<string>}
*/
export function GreetPerson(person) {
return Call.ByName("main.GreetService.GreetPerson", person);
return Call.ByID(4021313248, person);
}

0 comments on commit 43418e9

Please sign in to comment.