mirror of
https://github.com/DevLARLEY/WidevineProxy2.git
synced 2026-04-02 18:49:58 +00:00
10 lines
334 B
JavaScript
10 lines
334 B
JavaScript
import "../protobuf.min.js";
|
|
import "../license_protocol.js";
|
|
import { SettingsManager } from "../util.js";
|
|
|
|
document.getElementById('fileInput').addEventListener('change', async (event) => {
|
|
const file = event.target.files[0];
|
|
await SettingsManager.importDevice(file).then(() => {
|
|
window.close();
|
|
});
|
|
}); |