mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
This replaces all internal references to "robot" with "app" or "Application". There should be no functional change in public APIs, but may cause some issues for anyone using internal APIs.
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
module.exports = app => {
|
|
app.log('loaded app')
|
|
|
|
app.on('issue_comment.created', context => {
|
|
context.log('Comment created')
|
|
})
|
|
}
|