2019-01-09 22:59:03 +00:00
|
|
|
#!/usr/bin/env python3
|
2015-11-25 22:00:57 +00:00
|
|
|
|
2021-01-27 22:14:03 +00:00
|
|
|
# Hydrus is released under WTFPL
|
|
|
|
# You just DO WHAT THE FUCK YOU WANT TO.
|
|
|
|
# https://github.com/sirkris/WTFPL/blob/master/WTFPL.md
|
2014-07-30 21:18:17 +00:00
|
|
|
|
2023-05-09 21:56:03 +00:00
|
|
|
from hydrus import hydrus_client_boot
|
2013-11-06 18:22:07 +00:00
|
|
|
|
2013-07-24 20:26:00 +00:00
|
|
|
if __name__ == '__main__':
|
2013-07-10 20:25:57 +00:00
|
|
|
|
2023-05-09 21:56:03 +00:00
|
|
|
hydrus_client_boot.boot()
|
2013-11-06 18:22:07 +00:00
|
|
|
|