1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-17 05:24:06 +00:00

Initial commit

This commit is contained in:
2023-01-10 17:28:27 +01:00
commit 101d892139
45 changed files with 7976 additions and 0 deletions

16
frontend/wailsjs/go/main/App.d.ts vendored Executable file
View File

@ -0,0 +1,16 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {map[string]main} from '../models';
import {primitive} from '../models';
export function Hosts():Promise<map[string]main.Host>;
export function OpenCollection(arg1:string,arg2:string,arg3:string):Promise<primitive.M>;
export function OpenConnection(arg1:string):Promise<Array<string>>;
export function OpenDatabase(arg1:string,arg2:string):Promise<Array<string>>;
export function PerformFind(arg1:string,arg2:string,arg3:string,arg4:string):Promise<any>;
export function PerformInsert(arg1:string,arg2:string,arg3:string,arg4:string):Promise<any>;

27
frontend/wailsjs/go/main/App.js Executable file
View File

@ -0,0 +1,27 @@
// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function Hosts() {
return window['go']['main']['App']['Hosts']();
}
export function OpenCollection(arg1, arg2, arg3) {
return window['go']['main']['App']['OpenCollection'](arg1, arg2, arg3);
}
export function OpenConnection(arg1) {
return window['go']['main']['App']['OpenConnection'](arg1);
}
export function OpenDatabase(arg1, arg2) {
return window['go']['main']['App']['OpenDatabase'](arg1, arg2);
}
export function PerformFind(arg1, arg2, arg3, arg4) {
return window['go']['main']['App']['PerformFind'](arg1, arg2, arg3, arg4);
}
export function PerformInsert(arg1, arg2, arg3, arg4) {
return window['go']['main']['App']['PerformInsert'](arg1, arg2, arg3, arg4);
}