9 lines
150 B
Python
9 lines
150 B
Python
#!/usr/bin/env python3
|
|
"""Launcher shim for the Discord adapter."""
|
|
|
|
from youdis.adapters.discord import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|