mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
const express = require('express')
|
|
|
|
module.exports = function (webhook) {
|
|
const app = express()
|
|
|
|
app.use(webhook)
|
|
app.get('/ping', (req, res) => res.end('PONG'))
|
|
|
|
return app
|
|
}
|