2019-01-09 22:59:03 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-10-26 20:45:34 +00:00
|
|
|
|
2019-11-14 03:56:30 +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
|
2016-10-26 20:45:34 +00:00
|
|
|
|
2021-01-27 22:14:03 +00:00
|
|
|
from hydrus import hydrus_client
|
2019-08-15 00:40:48 +00:00
|
|
|
|
2021-01-27 22:14:03 +00:00
|
|
|
if __name__ == '__main__':
|
2016-10-26 20:45:34 +00:00
|
|
|
|
2021-01-27 22:14:03 +00:00
|
|
|
hydrus_client.boot()
|
2016-10-26 20:45:34 +00:00
|
|
|
|