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
|
|
|
"""
|
|
|
|
|
2011-11-03 17:47:35 +01:00
|
|
|
import radicale.__main__
|
2011-04-03 12:18:43 +02:00
|
|
|
|
2011-11-03 17:47:35 +01:00
|
|
|
radicale.__main__.run()
|