11 lines
233 B
Python
11 lines
233 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from sourcing import create_app
|
||
|
from sourcing.model import XanaLink, from_external
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app = create_app('config.default')
|
||
|
|
||
|
with app.test_client() as c:
|
||
|
c.get('/all_titles')
|