first commit

This commit is contained in:
2025-04-25 15:30:01 +02:00
commit 8fddcff0d9
36 changed files with 3678 additions and 0 deletions

10
frontend/wailsjs/go/backend/Decryptor.d.ts vendored Executable file
View File

@ -0,0 +1,10 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function DecryptHybridZip(arg1:string,arg2:string,arg3:string):Promise<void>;
export function SelectEncryptedFile():Promise<string>;
export function SelectOutputDirectory():Promise<string>;
export function SelectPrivateKeyFile():Promise<string>;

View File

@ -0,0 +1,19 @@
// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function DecryptHybridZip(arg1, arg2, arg3) {
return window['go']['backend']['Decryptor']['DecryptHybridZip'](arg1, arg2, arg3);
}
export function SelectEncryptedFile() {
return window['go']['backend']['Decryptor']['SelectEncryptedFile']();
}
export function SelectOutputDirectory() {
return window['go']['backend']['Decryptor']['SelectOutputDirectory']();
}
export function SelectPrivateKeyFile() {
return window['go']['backend']['Decryptor']['SelectPrivateKeyFile']();
}