File size: 220 Bytes
83dfd0a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3
"""Build the official-source retrieval database used by the API."""

from __future__ import annotations

from source_retrieval import main


if __name__ == "__main__":
    raise SystemExit(main())