blob: a1a9ddc12d8ad8f99212fafb710d4df68e0fb2b0 (
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
|
// Arching Kaos Main
//
// Kaotisk Hund - 2024
//
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
//
import { aboutSection } from "./sections/aboutSection.js";
import { akNodeInfoSection } from "./sections/akNodeInfoSection.js";
import { chatSection } from "./sections/chatSection.js";
import { commentsSection } from "./sections/commentsSection.js";
import { filesSection } from "./sections/filesSection.js";
import { mixtapesSection } from "./sections/mixtapesSection.js";
import { newsSection } from "./sections/newsSection.js";
import { myPageSection } from "./sections/myPageSection.js";
import { notFoundSection } from "./sections/notFoundSection.js";
import { radioSection } from "./sections/radioSection.js";
import { settingsSection } from "./sections/settingsSection.js";
import { statsSection } from "./sections/statsSection.js";
import { stellarBalancesSection } from "./sections/stellarBalancesSection.js";
import { stellarDataConfigSection } from "./sections/stellarDataConfigSection.js";
import { stellarSection } from "./sections/stellarSection.js";
import { welcomeSection } from "./sections/welcomeSection.js";
import { zchainDataSection } from "./sections/zchainDataSection.js";
export function mainSpawn()
{
aboutSection();
akNodeInfoSection();
chatSection();
commentsSection();
filesSection();
mixtapesSection();
newsSection();
myPageSection();
notFoundSection();
radioSection();
settingsSection();
statsSection();
stellarBalancesSection();
stellarDataConfigSection();
stellarSection();
welcomeSection();
zchainDataSection();
}
// @license-end
|