mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-10 01:44:14 +00:00
7 lines
245 B
Plaintext
7 lines
245 B
Plaintext
|
import "module/loadResource.yjs";
|
|||
|
@Description("这是最简单的带UI的合约,需要实现module/loadResource.yjs中的三个方法")
|
|||
|
contract RenderSample {
|
|||
|
export function query(arg) {
|
|||
|
return "dataFrom Contract, " + requester;
|
|||
|
}
|
|||
|
}
|