Migrate from gin to echo framework #77

Merged
jacob1123 merged 11 commits from migrate-to-echo into master 2022-08-21 22:04:28 +02:00
21 changed files with 378 additions and 419 deletions
Showing only changes of commit 0b36048f47 - Show all commits

View File

@ -16,9 +16,9 @@ const TX = ref<Transaction>({
Memo: "",
Amount: 0,
Payee: "",
PayeeID: undefined,
PayeeID: null,
Category: "",
CategoryID: undefined,
CategoryID: null,
CategoryGroup: "",
GroupID: "",
ID: "",

View File

@ -17,12 +17,12 @@ export interface Transaction {
TransferAccount: string;
CategoryGroup: string;
Category: string;
CategoryID: string | undefined;
CategoryID: string | null;
Memo: string;
Status: string;
GroupID: string;
Payee: string;
PayeeID: string | undefined;
PayeeID: string | null;
Amount: number;
Reconciled: boolean;
Account: string;