-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathload_common.jl
48 lines (43 loc) · 1.2 KB
/
load_common.jl
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
for fn in [
"utils.jl",
"nostr.jl",
"nostr_client.jl",
"bech32.jl",
"fetching.jl",
"clocks.jl",
"perf_stats.jl",
"pushgateway_exporter.jl",
"filterlist.jl",
"trust_rank.jl",
"postgres.jl",
"tracing.jl",
"workers.jl",
"db.jl",
"media.jl",
"metrics_logger.jl",
"app.jl",
"blossom.jl",
"perf_test_redirection.jl",
"cache_server_handlers.jl",
"cache_server.jl",
"spam_detection.jl",
"firehose_client.jl",
"firehose_server.jl",
"cache_server_sync.jl",
"event_sync.jl",
"dvm_service_provider.jl",
"dvm_feed_checker.jl",
"dag_base.jl",
"dag.jl",
"dag_runner.jl",
"event_rebroadcasting.jl",
]
fn = "src/$fn"
println(fn, " -> ", include(fn))
end
include("firehose_server_default_message_processors.jl")
include("internal_services.jl")
DB.PRINT_EXCEPTIONS[] = true
#gctask = Utils.GCTask(; full=true, period=300)
stuff = []
stuffd = Dict() |> Utils.ThreadSafe