7 lines
159 B
Python
7 lines
159 B
Python
"""Run the Straywild discovery service through its legacy module name."""
|
|
|
|
from straywild_discovery.server import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|