11 lines
233 B
Python
Executable file
11 lines
233 B
Python
Executable file
#!/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')
|