userver
C++ Async Framework
Toggle main menu visibility
Loading...
Searching...
No Matches
utils.py
1
import
pathlib
2
3
4
def
scan_sql_directory(root: pathlib.Path) -> list[pathlib.Path]:
5
return
[
6
entry
7
for
entry
in
sorted(root.iterdir())
8
if
entry.is_file()
and
entry.suffix ==
'.sql'
9
]
en
testsuite
databases
clickhouse
utils.py
Generated on
for userver by
Doxygen
1.17.0