fusenapi/server_api/render.api

33 lines
575 B
Plaintext
Raw Normal View History

2023-06-29 10:04:59 +00:00
syntax = "v1"
info (
title: "渲染"// TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
type RequestToUnity {
}
type RequestReadImages {
}
service render {
2023-08-07 04:31:31 +00:00
//云渲染完了通知接口
@handler RenderNotifyHandler
post /api/render/render_notify(RenderNotifyReq) returns (response);
}
//渲染完了通知接口
type RenderNotifyReq {
Sign string `json:"sign"`
Time int64 `json:"time"`
Info NotifyInfo `json:"info"`
}
type NotifyInfo {
TaskId string `json:"task_id"` //任务id
Image string `json:"image"`
2023-06-29 10:04:59 +00:00
}