prashant
commited on
Commit
•
5c238c3
1
Parent(s):
f9949bb
enabling search
Browse files
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
import appStore.sdg_analysis as sdg_analysis
|
3 |
#import appStore.coherence as coherence
|
4 |
import appStore.info as info
|
@@ -12,6 +12,6 @@ app = MultiApp()
|
|
12 |
|
13 |
app.add_app("About","house", info.app)
|
14 |
app.add_app("SDG Analysis","gear",sdg_analysis.app)
|
15 |
-
|
16 |
|
17 |
app.run()
|
|
|
1 |
+
import appStore.keyword_search as keyword_search
|
2 |
import appStore.sdg_analysis as sdg_analysis
|
3 |
#import appStore.coherence as coherence
|
4 |
import appStore.info as info
|
|
|
12 |
|
13 |
app.add_app("About","house", info.app)
|
14 |
app.add_app("SDG Analysis","gear",sdg_analysis.app)
|
15 |
+
app.add_app("Search","search", keyword_search.app)
|
16 |
|
17 |
app.run()
|