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