mirror of
https://github.com/koniu/recoll-webui.git
synced 2025-10-03 09:49:25 +02:00
8 lines
184 B
Python
Executable file
8 lines
184 B
Python
Executable file
#!env python
|
|
import os
|
|
import bottle
|
|
import webui
|
|
|
|
os.chdir(os.path.dirname(__file__))
|
|
application = bottle.default_app()
|
|
# vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et
|