diff --git a/src/core.clj b/src/core.clj index b3c82b4..01fdf60 100644 --- a/src/core.clj +++ b/src/core.clj @@ -1,8 +1,5 @@ ;; Copyright 2024 Ben Sturmfels ;; License: GPLv3-or-later -;; -;; Full copyright and licensing details can be found at toplevel file -;; LICENSE.txt in the repository. (ns core "Beancount importer for Paychex Pay Item Details report." diff --git a/src/import.clj b/src/import.clj index 5fe910e..fca4a55 100644 --- a/src/import.clj +++ b/src/import.clj @@ -1,8 +1,5 @@ ;; Copyright 2024 Ben Sturmfels ;; License: GPLv3-or-later -;; -;; Full copyright and licensing details can be found at toplevel file -;; LICENSE.txt in the repository. (ns import (:require [clojure.data.csv :as csv] diff --git a/src/parse.clj b/src/parse.clj index a0708fa..a58afc9 100644 --- a/src/parse.clj +++ b/src/parse.clj @@ -1,8 +1,5 @@ ;; Copyright 2024 Ben Sturmfels ;; License: GPLv3-or-later -;; -;; Full copyright and licensing details can be found at toplevel file -;; LICENSE.txt in the repository. (ns parse "Tools for parsing a subset of Beancount transaction text format for testing. diff --git a/test/import_test.clj b/test/import_test.clj index 78e8069..c009842 100644 --- a/test/import_test.clj +++ b/test/import_test.clj @@ -1,5 +1,8 @@ +;; Copyright 2024 Ben Sturmfels +;; License: GPLv3-or-later + (ns import-test - (:require [import :as sut] + (:require [import] [clojure.java.io] [clojure.test :as t]))