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

Split a bit of backend code

This commit is contained in:
2023-01-14 20:47:29 +01:00
parent b7365b739c
commit 9662d46957
15 changed files with 408 additions and 359 deletions

19
frontend/wailsjs/go/app/App.d.ts vendored Executable file
View File

@ -0,0 +1,19 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {map[string]app} from '../models';
import {primitive} from '../models';
import {app} from '../models';
export function DropDatabase(arg1:string,arg2:string):Promise<boolean>;
export function Hosts():Promise<map[string]app.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<app.findResult>;
export function PerformInsert(arg1:string,arg2:string,arg3:string,arg4:string):Promise<any>;

31
frontend/wailsjs/go/app/App.js Executable file
View File

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