Initial check-in

This commit is contained in:
Ray Miller 2024-08-10 16:29:45 +01:00
commit 6f56fae985
10 changed files with 966 additions and 0 deletions

35
spam-filter/hconfig.scm Normal file
View file

@ -0,0 +1,35 @@
(define-module
(spam-filter hconfig)
#:use-module
(srfi srfi-26)
#:export
(%version
%author
%license
%copyright
%gettext-domain
G_
N_
init-nls
init-locale))
(define %version "0.1")
(define %author "Ray Miller")
(define %license 'gpl3+)
(define %copyright '(2024))
(define %gettext-domain "guile-spam-filter")
(define G_ identity)
(define N_ identity)
(define (init-nls) "Dummy as no NLS is used" #t)
(define (init-locale)
"Dummy as no NLS is used"
#t)