feat: field-sync-gui MVP — Wails GUI ingest SD→local+S3 (4 slots //)

This commit is contained in:
2026-04-27 22:10:15 +00:00
commit dcaf5ac020
46 changed files with 5135 additions and 0 deletions

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

@@ -0,0 +1,17 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {main} from '../models';
import {config} from '../models';
import {detect} from '../models';
export function CancelIngest():Promise<void>;
export function GetSnapshot():Promise<main.Snapshot>;
export function LoadConfig():Promise<config.Config>;
export function ScanCards():Promise<Array<detect.SDCard>>;
export function SetDryRun(arg1:boolean):Promise<void>;
export function StartIngest(arg1:Array<main.SlotPayload>):Promise<void>;

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 CancelIngest() {
return window['go']['main']['App']['CancelIngest']();
}
export function GetSnapshot() {
return window['go']['main']['App']['GetSnapshot']();
}
export function LoadConfig() {
return window['go']['main']['App']['LoadConfig']();
}
export function ScanCards() {
return window['go']['main']['App']['ScanCards']();
}
export function SetDryRun(arg1) {
return window['go']['main']['App']['SetDryRun'](arg1);
}
export function StartIngest(arg1) {
return window['go']['main']['App']['StartIngest'](arg1);
}