Tidy headers

This commit is contained in:
Ben Sturmfels 2024-02-22 14:21:47 +11:00
parent 72f2c60ca0
commit 87d10199e4
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
4 changed files with 4 additions and 10 deletions

View file

@ -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."

View file

@ -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]

View file

@ -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.

View file

@ -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]))