8 lines
175 B
Python
8 lines
175 B
Python
#!/usr/bin/env python3
|
|
"""Live Discord status message for The Mithral Archive."""
|
|
|
|
from archive_bot.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|