From 29b394baf4f4b425e0f3b0b05b5e219805badbc4 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <--get-all> Date: Sun, 22 Dec 2024 16:06:20 +0100 Subject: [PATCH] Moved sparebank1.ts to bank dir Signed-off-by: Martin Berg Alstad --- src/{ => bank}/sparebank1.ts | 0 src/main.ts | 6 +++++- 2 files changed, 5 insertions(+), 1 deletion(-) rename src/{ => bank}/sparebank1.ts (100%) diff --git a/src/sparebank1.ts b/src/bank/sparebank1.ts similarity index 100% rename from src/sparebank1.ts rename to src/bank/sparebank1.ts diff --git a/src/main.ts b/src/main.ts index bea417c..530f30a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,10 @@ import { type Actual, ActualImpl } from "@/actual.ts" import { cronJobDaily } from "@/cron.ts" -import { type Bank, Sparebank1Impl, type Transaction } from "@/sparebank1.ts" +import { + type Bank, + Sparebank1Impl, + type Transaction, +} from "@/bank/sparebank1.ts" import { bankTransactionIntoActualTransaction } from "@/mappings.ts" import { ACTUAL_ACCOUNT_IDS, BANK_ACCOUNT_IDS } from "../config.ts" import logger from "pino"