15 lines
255 B
Python
15 lines
255 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()
|