Added some more commands and mades some quality of life improvements
All checks were successful
Build / build (push) Successful in 4m27s

This commit is contained in:
Leon Mika 2026-01-25 11:00:40 +11:00
parent 3a23118036
commit 3cb5795ca5
17 changed files with 432 additions and 75 deletions

View file

@ -2,4 +2,6 @@
// This file is automatically generated. DO NOT EDIT
import {main} from '../models';
export function ListProcessors():Promise<Array<main.ListProcessorsResponse>>;
export function ProcessText(arg1:main.ProcessTextRequest):Promise<void>;

View file

@ -2,6 +2,10 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function ListProcessors() {
return window['go']['main']['App']['ListProcessors']();
}
export function ProcessText(arg1) {
return window['go']['main']['App']['ProcessText'](arg1);
}