2016-06-10 09:07:05 +02:00
|
|
|
#!/usr/bin/env python3
|
2008-12-30 17:25:42 +01:00
|
|
|
|
2009-07-27 17:04:54 +02:00
|
|
|
"""
|
2011-04-02 22:09:43 +02:00
|
|
|
Radicale CalDAV Server.
|
2009-07-27 17:04:54 +02:00
|
|
|
|
2011-04-02 22:09:43 +02:00
|
|
|
Launch the server according to configuration and command-line options.
|
2010-02-10 18:57:21 +01:00
|
|
|
|
2009-07-27 17:04:54 +02:00
|
|
|
"""
|
|
|
|
|
2020-01-17 05:00:31 +01:00
|
|
|
import runpy
|
2011-04-03 12:18:43 +02:00
|
|
|
|
2020-01-17 05:00:31 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
runpy.run_module("radicale", run_name="__main__")
|