Add basic scheme for search engine
This commit is contained in:
parent
19d21c91ee
commit
44b9ebbaab
2 changed files with 18 additions and 2 deletions
15
src/mod_searchable.py
Normal file
15
src/mod_searchable.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from shiny import module, ui, render, Inputs, Outputs, Session
|
||||
|
||||
|
||||
@module.ui
|
||||
def searchable_ui():
|
||||
return ui.div("hello world")
|
||||
|
||||
|
||||
@ module.server
|
||||
def searchable_server(input: Inputs, output: Outputs, session: Session, starting_value=0):
|
||||
@output
|
||||
@render.ui
|
||||
def dataset_infos():
|
||||
|
||||
return ui.markdown("")
|
Loading…
Add table
Add a link
Reference in a new issue