mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
12 lines
180 B
Python
Executable file
12 lines
180 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Radicale CalDAV Server.
|
|
|
|
Launch the server according to configuration and command-line options.
|
|
|
|
"""
|
|
|
|
import radicale.__main__
|
|
|
|
radicale.__main__.run()
|