16 lines
286 B
Plaintext
16 lines
286 B
Plaintext
|
syntax = "v1"
|
||
|
|
||
|
info (
|
||
|
title: "飞书同步服务"// TODO: add title
|
||
|
desc: // TODO: add description
|
||
|
author: ""
|
||
|
email: ""
|
||
|
)
|
||
|
|
||
|
import "basic.api"
|
||
|
|
||
|
service feishu-sync {
|
||
|
//飞书ticket webhook事件接口
|
||
|
@handler WebhookHandler
|
||
|
post /api/feishu/webhook(request) returns (response);
|
||
|
}
|