Remove admin webui, move options to CLI args

This commit is contained in:
Ethan O'Brien
2024-11-02 12:22:16 -05:00
parent 7aaf22c923
commit 8bc07a6419
10 changed files with 20 additions and 167 deletions

View File

@ -3,7 +3,6 @@ import ReactDOM from 'react-dom/client'
import Login from './login/Login.jsx'
import Home from './home/Home.jsx'
import Import from './import/Import.jsx'
import Admin from './admin/Admin.jsx'
import Help from './help/Help.jsx'
let Elem;
@ -17,9 +16,6 @@ switch (window.location.pathname) {
case "/import/":
Elem = Import;
break;
case "/admin/":
Elem = Admin;
break;
case "/help/":
Elem = Help;
break;