pig.py/serp.py
Russell Ballestrini f124828c16 21 side quests scattered through the codebase
1-20 are findable. 21 is the absence itself.

fnord
2026-01-05 21:10:02 -05:00

15 lines
324 B
Python

#!/usr/bin/env python3
# Side quest 15/21: 31337 is not a random number.
"""
neopig SERP - Search Engine Results Page
Thin wrapper for CLI compatibility. All logic is in serp/server.py.
Usage:
python serp.py --port 31337 --vault ./vault --db neopig.db
"""
from serp import main
if __name__ == "__main__":
main()