blob: 9af03581560eabe03d2a2d8fc81def31a76ca252 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
;;; wasp --- We Are So (back), 'Puter -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(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
|