Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 5291d09

Browse files
committed
renaming automations per lib
1 parent 4085677 commit 5291d09

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

src/components/DefaultFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Footer from "automations/Footer";
1+
import Footer from "lib/Footer";
22
import { DatabaseHeaderProps, TableColumn } from "cdm/FolderModel";
33
import { FooterType } from "helpers/Constants";
44
import React, { MouseEventHandler, useEffect, useState } from "react";
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { FormulaFunctions } from "automations/formula_functions/FormulaFunctions";
2-
import { IGenerateObject } from "automations/core/IGenerateObject";
1+
import { FormulaFunctions } from "lib/formula_functions/FormulaFunctions";
2+
import { IGenerateObject } from "lib/core/IGenerateObject";
33
import { LocalSettings } from "cdm/SettingsModel";
44
export class FormulaGenerator implements IGenerateObject {
55
public js_functions: FormulaFunctions;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IGenerateObject } from "automations/core/IGenerateObject";
1+
import { IGenerateObject } from "lib/core/IGenerateObject";
22
import { DatabaseFnType } from "cdm/ModulesFnModel";
33
import { DbModule } from "./core/DbModule";
44
import { LuxonFn } from "./core/modules/LuxonFn";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DbModule } from "automations/core/DbModule";
1+
import { DbModule } from "lib/core/DbModule";
22
import { Literal } from "obsidian-dataview";
33
import { DateTime, DurationLikeObject } from "luxon";
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DbModule } from "automations/core/DbModule";
1+
import { DbModule } from "lib/core/DbModule";
22
import { Literal } from "obsidian-dataview";
33

44

src/automations/formula_functions/FormulaFunctions.ts renamed to src/lib/formula_functions/FormulaFunctions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { IGenerateObject } from "automations/core/IGenerateObject";
2-
import { ScriptFunctions } from "automations/formula_functions/ScriptFunctions";
1+
import { IGenerateObject } from "lib/core/IGenerateObject";
2+
import { ScriptFunctions } from "lib/formula_functions/ScriptFunctions";
33
import { LocalSettings } from "cdm/SettingsModel";
44

55
export class FormulaFunctions implements IGenerateObject {

0 commit comments

Comments
 (0)