summaryrefslogtreecommitdiff
path: root/examples/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/index.js')
-rw-r--r--examples/index.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/index.js b/examples/index.js
deleted file mode 100644
index 64a619b..0000000
--- a/examples/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-class Index {
- constructor() {}
-
- async Main() {
- return {
- html: `
- <section>
- <h1>Welcome to <a href='https://git.fatalmatrix.xyz/cosmic.git'>Cosmic</a>!</h1>
- <p>Please read the README.md</p>
- </section>
- `,
- meta: {
- keywords: 'Cosmic',
- description: 'Welcome to Cosmic!'
- }
- }
- }
-}
-
-module.exports = (x) => {return new Index(x)}
-