aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/udemy/webview.js
blob: f440fe5fe72b0a2345c268554d38f589c823e6cc (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = (Ferdi) => {
  function getMessages() {
    let direct = 0;
    let indirect = 0;
    Ferdi.setBadge(direct, indirect);
  }

  Ferdi.loop(getMessages);
}