Kaydet (Commit) d0b6bdae authored tarafından Eda Altuntaş's avatar Eda Altuntaş

Deeplink fonksiyonu eklendi

üst dca13e28
import { Deeplink } from "electron-deeplink";
const handler = (app, mainWindow, isDevelopment) => {
const deeplink = new Deeplink({
app,
mainWindow,
protocol: isDevelopment ? "oyunparki-dev" : "oyunparki"
});
deeplink.on("received", link => {
console.log(link);
});
};
module.exports = handler;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment