14 lines
254 B
Python
14 lines
254 B
Python
import asyncio
|
|
|
|
from . import server
|
|
|
|
|
|
def main():
|
|
"""Main entry point for the package."""
|
|
asyncio.run(server.main())
|
|
|
|
# Optionally expose other important items at package level
|
|
__all__ = ['main', 'server']
|
|
|
|
if __name__ == "__main__":
|
|
main()
|