summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthewsot@outlook.com>2021-01-16 17:15:45 -0800
committerMatthew Sotoudeh <matthewsot@outlook.com>2021-01-16 17:15:45 -0800
commitb60bfc13fc1f615a61447a1af6bb9c47d71ea9fb (patch)
tree6d79562c209f0e43854f9d601324c4cea48e2ba0
parentfc97b2ca3b4aaa125dde614717b59214704fe2f6 (diff)
Add back important file accidentally gitignore'd
-rw-r--r--.gitignore1
-rw-r--r--audrey3/main.rkt25
2 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index b9c9da1..a9f49a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
.*.sw*
private/*
main.rkt
+!audrey3/main.rkt
!private/README.md
diff --git a/audrey3/main.rkt b/audrey3/main.rkt
new file mode 100644
index 0000000..59e5107
--- /dev/null
+++ b/audrey3/main.rkt
@@ -0,0 +1,25 @@
+#lang racket
+
+(require "abstract-filter.rkt"
+ "editor.rkt"
+ "feeddef.rkt"
+ "feed-item.rkt"
+ "feed.rkt"
+ "filter.rkt"
+ "local-db.rkt"
+ "lview.rkt"
+ "pager.rkt"
+ "ui.rkt"
+ "utils.rkt")
+
+(provide (all-from-out "abstract-filter.rkt")
+ (all-from-out "editor.rkt")
+ (all-from-out "feeddef.rkt")
+ (all-from-out "feed-item.rkt")
+ (all-from-out "feed.rkt")
+ (all-from-out "filter.rkt")
+ (all-from-out "local-db.rkt")
+ (all-from-out "lview.rkt")
+ (all-from-out "pager.rkt")
+ (all-from-out "ui.rkt")
+ (all-from-out "utils.rkt"))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback