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: "", Memo: "",
Amount: 0, Amount: 0,
Payee: "", Payee: "",
PayeeID: undefined, PayeeID: null,
Category: "", Category: "",
CategoryID: undefined, CategoryID: null,
CategoryGroup: "", CategoryGroup: "",
GroupID: "", GroupID: "",
ID: "", ID: "",

View File

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