diff --git a/FastCheck/.editorconfig b/.editorconfig similarity index 100% rename from FastCheck/.editorconfig rename to .editorconfig diff --git a/FastCheck/.gitignore b/.gitignore similarity index 100% rename from FastCheck/.gitignore rename to .gitignore diff --git a/FastCheck/.vscode/extensions.json b/.vscode/extensions.json similarity index 100% rename from FastCheck/.vscode/extensions.json rename to .vscode/extensions.json diff --git a/FastCheck/.vscode/launch.json b/.vscode/launch.json similarity index 100% rename from FastCheck/.vscode/launch.json rename to .vscode/launch.json diff --git a/FastCheck/.vscode/tasks.json b/.vscode/tasks.json similarity index 100% rename from FastCheck/.vscode/tasks.json rename to .vscode/tasks.json diff --git a/FastCheck/BACKEND_IMPLEMENTATION.md b/BACKEND_IMPLEMENTATION.md similarity index 100% rename from FastCheck/BACKEND_IMPLEMENTATION.md rename to BACKEND_IMPLEMENTATION.md diff --git a/FastCheck/IMPLEMENTATION.md b/IMPLEMENTATION.md similarity index 100% rename from FastCheck/IMPLEMENTATION.md rename to IMPLEMENTATION.md diff --git a/FastCheck/README.md b/README.md similarity index 100% rename from FastCheck/README.md rename to README.md diff --git a/FastCheck/angular.json b/angular.json similarity index 100% rename from FastCheck/angular.json rename to angular.json diff --git a/FastCheck/package-lock.json b/package-lock.json similarity index 100% rename from FastCheck/package-lock.json rename to package-lock.json diff --git a/FastCheck/package.json b/package.json similarity index 100% rename from FastCheck/package.json rename to package.json diff --git a/FastCheck/public/favicon.ico b/public/favicon.ico similarity index 100% rename from FastCheck/public/favicon.ico rename to public/favicon.ico diff --git a/FastCheck/public/missing-apis.txt b/public/missing-apis.txt similarity index 100% rename from FastCheck/public/missing-apis.txt rename to public/missing-apis.txt diff --git a/FastCheck/src/app/app.config.ts b/src/app/app.config.ts similarity index 100% rename from FastCheck/src/app/app.config.ts rename to src/app/app.config.ts diff --git a/FastCheck/src/app/app.html b/src/app/app.html similarity index 100% rename from FastCheck/src/app/app.html rename to src/app/app.html diff --git a/FastCheck/src/app/app.routes.ts b/src/app/app.routes.ts similarity index 100% rename from FastCheck/src/app/app.routes.ts rename to src/app/app.routes.ts diff --git a/FastCheck/src/app/app.scss b/src/app/app.scss similarity index 100% rename from FastCheck/src/app/app.scss rename to src/app/app.scss diff --git a/FastCheck/src/app/app.spec.ts b/src/app/app.spec.ts similarity index 100% rename from FastCheck/src/app/app.spec.ts rename to src/app/app.spec.ts diff --git a/FastCheck/src/app/app.ts b/src/app/app.ts similarity index 100% rename from FastCheck/src/app/app.ts rename to src/app/app.ts diff --git a/FastCheck/src/app/components/active-checks/active-checks.component.html b/src/app/components/active-checks/active-checks.component.html similarity index 100% rename from FastCheck/src/app/components/active-checks/active-checks.component.html rename to src/app/components/active-checks/active-checks.component.html diff --git a/FastCheck/src/app/components/active-checks/active-checks.component.scss b/src/app/components/active-checks/active-checks.component.scss similarity index 100% rename from FastCheck/src/app/components/active-checks/active-checks.component.scss rename to src/app/components/active-checks/active-checks.component.scss diff --git a/FastCheck/src/app/components/active-checks/active-checks.component.ts b/src/app/components/active-checks/active-checks.component.ts similarity index 100% rename from FastCheck/src/app/components/active-checks/active-checks.component.ts rename to src/app/components/active-checks/active-checks.component.ts diff --git a/FastCheck/src/app/components/dashboard/dashboard.component.html b/src/app/components/dashboard/dashboard.component.html similarity index 100% rename from FastCheck/src/app/components/dashboard/dashboard.component.html rename to src/app/components/dashboard/dashboard.component.html diff --git a/FastCheck/src/app/components/dashboard/dashboard.component.scss b/src/app/components/dashboard/dashboard.component.scss similarity index 100% rename from FastCheck/src/app/components/dashboard/dashboard.component.scss rename to src/app/components/dashboard/dashboard.component.scss diff --git a/FastCheck/src/app/components/dashboard/dashboard.component.ts b/src/app/components/dashboard/dashboard.component.ts similarity index 100% rename from FastCheck/src/app/components/dashboard/dashboard.component.ts rename to src/app/components/dashboard/dashboard.component.ts diff --git a/FastCheck/src/app/components/history/history.component.html b/src/app/components/history/history.component.html similarity index 100% rename from FastCheck/src/app/components/history/history.component.html rename to src/app/components/history/history.component.html diff --git a/FastCheck/src/app/components/history/history.component.scss b/src/app/components/history/history.component.scss similarity index 100% rename from FastCheck/src/app/components/history/history.component.scss rename to src/app/components/history/history.component.scss diff --git a/FastCheck/src/app/components/history/history.component.ts b/src/app/components/history/history.component.ts similarity index 100% rename from FastCheck/src/app/components/history/history.component.ts rename to src/app/components/history/history.component.ts diff --git a/FastCheck/src/app/components/login/login.component.html b/src/app/components/login/login.component.html similarity index 100% rename from FastCheck/src/app/components/login/login.component.html rename to src/app/components/login/login.component.html diff --git a/FastCheck/src/app/components/login/login.component.scss b/src/app/components/login/login.component.scss similarity index 100% rename from FastCheck/src/app/components/login/login.component.scss rename to src/app/components/login/login.component.scss diff --git a/FastCheck/src/app/components/login/login.component.ts b/src/app/components/login/login.component.ts similarity index 100% rename from FastCheck/src/app/components/login/login.component.ts rename to src/app/components/login/login.component.ts diff --git a/FastCheck/src/app/guards/auth.guard.ts b/src/app/guards/auth.guard.ts similarity index 100% rename from FastCheck/src/app/guards/auth.guard.ts rename to src/app/guards/auth.guard.ts diff --git a/FastCheck/src/app/models/api.model.ts b/src/app/models/api.model.ts similarity index 100% rename from FastCheck/src/app/models/api.model.ts rename to src/app/models/api.model.ts diff --git a/FastCheck/src/app/models/fastcheck.model.ts b/src/app/models/fastcheck.model.ts similarity index 100% rename from FastCheck/src/app/models/fastcheck.model.ts rename to src/app/models/fastcheck.model.ts diff --git a/FastCheck/src/app/models/session.model.ts b/src/app/models/session.model.ts similarity index 100% rename from FastCheck/src/app/models/session.model.ts rename to src/app/models/session.model.ts diff --git a/FastCheck/src/app/services/api.service.ts b/src/app/services/api.service.ts similarity index 100% rename from FastCheck/src/app/services/api.service.ts rename to src/app/services/api.service.ts diff --git a/FastCheck/src/app/services/auth.service.ts b/src/app/services/auth.service.ts similarity index 100% rename from FastCheck/src/app/services/auth.service.ts rename to src/app/services/auth.service.ts diff --git a/FastCheck/src/app/services/fastcheck.service.ts b/src/app/services/fastcheck.service.ts similarity index 100% rename from FastCheck/src/app/services/fastcheck.service.ts rename to src/app/services/fastcheck.service.ts diff --git a/FastCheck/src/environments/environment.ts b/src/environments/environment.ts similarity index 100% rename from FastCheck/src/environments/environment.ts rename to src/environments/environment.ts diff --git a/FastCheck/src/index.html b/src/index.html similarity index 100% rename from FastCheck/src/index.html rename to src/index.html diff --git a/FastCheck/src/main.ts b/src/main.ts similarity index 100% rename from FastCheck/src/main.ts rename to src/main.ts diff --git a/FastCheck/src/styles.scss b/src/styles.scss similarity index 100% rename from FastCheck/src/styles.scss rename to src/styles.scss diff --git a/FastCheck/tsconfig.app.json b/tsconfig.app.json similarity index 100% rename from FastCheck/tsconfig.app.json rename to tsconfig.app.json diff --git a/FastCheck/tsconfig.json b/tsconfig.json similarity index 100% rename from FastCheck/tsconfig.json rename to tsconfig.json diff --git a/FastCheck/tsconfig.spec.json b/tsconfig.spec.json similarity index 100% rename from FastCheck/tsconfig.spec.json rename to tsconfig.spec.json