Add an "Import match list" tab to the scouting web page

This patch adds a new tab to the scouting web page to import the match
list. You have to point the server at a config file with `--tba_config`.
See its `--help` for more information.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I606915a6cc5776fe183da41ab8b04b063f57dafd
diff --git a/scouting/www/app_module.ts b/scouting/www/app_module.ts
index 6a6fff0..2a514f2 100644
--- a/scouting/www/app_module.ts
+++ b/scouting/www/app_module.ts
@@ -2,6 +2,7 @@
 import {BrowserModule} from '@angular/platform-browser';
 import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
 import {EntryModule} from './entry/entry.module';
+import {ImportMatchListModule} from './import_match_list/import_match_list.module';
 
 import {App} from './app';
 
@@ -11,6 +12,7 @@
     BrowserModule,
     BrowserAnimationsModule,
     EntryModule,
+    ImportMatchListModule,
   ],
   exports: [App],
   bootstrap: [App],