mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
13 lines
225 B
Python
Executable file
13 lines
225 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Radicale CalDAV Server.
|
|
|
|
Launch the server according to configuration and command-line options.
|
|
|
|
"""
|
|
|
|
import runpy
|
|
|
|
if __name__ == "__main__":
|
|
runpy.run_module("radicale", run_name="__main__")
|