mwmbl/app.py
2021-06-05 22:22:31 +01:00

7 lines
192 B
Python

import create_app
from index import TinyIndex, PAGE_SIZE, NUM_PAGES
from paths import INDEX_PATH
tiny_index = TinyIndex(INDEX_PATH, NUM_PAGES, PAGE_SIZE)
app = create_app.create(tiny_index)