summaryrefslogtreecommitdiff
path: root/wasp.el
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-03-26 23:34:28 -0400
committerLLLL Colonq <llll@colonq>2024-03-26 23:34:28 -0400
commit782c667e824d426b5443591afeefc37d0ae17785 (patch)
treeae5d232d598e2008bc2cadf32157a4d937b01951 /wasp.el
parent8e9db9303fc5d72ddfdc9ab4a9adaa8299e6e21a (diff)
We streamed for 9 hours and (mostly) fixed everything.
Diffstat (limited to 'wasp.el')
-rw-r--r--wasp.el53
1 files changed, 53 insertions, 0 deletions
diff --git a/wasp.el b/wasp.el
index 92492495..9af03581 100644
--- a/wasp.el
+++ b/wasp.el
@@ -4,8 +4,61 @@
(require 'f)
+(add-to-list 'load-path (f-canonical "./secret/"))
(add-to-list 'load-path (f-canonical "./src/"))
+(add-to-list 'load-path (f-canonical "./src/gizmo/"))
+(add-to-list 'load-path (f-canonical "./src/contrib/"))
+
+;; do not open this on stream
+(require 'wasp-sensitive)
+
+;; core
(require 'wasp-utils)
+(require 'wasp-hooks)
+(require 'wasp-bus)
+(require 'wasp-db)
+(require 'wasp-user)
+(require 'wasp-ai)
+(require 'wasp-audio)
+(require 'wasp-model)
+(require 'wasp-obs)
+(require 'wasp-chat)
+(require 'wasp-twitch)
+
+;; gizmos
+(require 'wasp-pronunciation)
+(require 'wasp-biblicality)
+(require 'wasp-newspaper)
+(require 'wasp-friend)
+
+;; configuration
+(require 'wasp-user-whitelist)
+(require 'wasp-twitch-chat-commands)
+(require 'wasp-twitch-redeems)
+(require 'wasp-event-handlers)
+
+;; user contrib
+(require 'bezelea-muzak)
+
+;; initialization
+(w/connect)
+(w/db-connect)
+(w/create-chat-overlay-frame)
+(w/show-chat-overlay-frame nil)
+(w/twitch-7tv-update-emotes)
+(w/twitch-update-title)
+
+(w/twitch-run-shoutout-timer)
+(w/twitch-run-emote-frame-timer)
+(w/run-model-timer)
+(w/run-obs-timer)
+(w/run-stream-transcribe-timer)
+
+(w/populate-bible-table)
+
+;; (defun w/fix-user-database-ok (user)
+;; "Fix USER's database entry."
+;; (w/user-set user (fig//db2-serialize-old-entry (fig//load-db-old user))))
(provide 'wasp)
;;; wasp.el ends here