Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Saiger authored and Kevin Saiger committed Dec 14, 2019
0 parents commit 4688347
Show file tree
Hide file tree
Showing 16 changed files with 3,061 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
build
._.DS_Store
.DS_Store
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Web Glasses

Web Glasses is a software designed for a self built AR Glasses.
12 changes: 12 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
async function loadWebserver()
{
require("./src/servers/webserver");
}

async function loadProxyserver()
{
require("./src/servers/proxyserver");
}

loadWebserver();
loadProxyserver();
Loading

0 comments on commit 4688347

Please sign in to comment.