13 lines
180 B
Python
Executable File
13 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()
|