mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-07-29 17:48:37 -04:00
pantalaimon: Move the daemon into it's subdir.
This commit is contained in:
parent
c6c04b68db
commit
2702b51698
2 changed files with 4 additions and 2 deletions
|
@ -189,7 +189,6 @@ class ProxyDaemon:
|
||||||
This method is called when we shut the whole app down
|
This method is called when we shut the whole app down
|
||||||
"""
|
"""
|
||||||
for client in self.client_sessions.values():
|
for client in self.client_sessions.values():
|
||||||
print("CLOSING CLIENT {}".format(client))
|
|
||||||
await client.close()
|
await client.close()
|
||||||
|
|
||||||
if self.default_session:
|
if self.default_session:
|
5
setup.py
5
setup.py
|
@ -18,7 +18,10 @@ setup(
|
||||||
"appdirs",
|
"appdirs",
|
||||||
"aiohttp-socks",
|
"aiohttp-socks",
|
||||||
"typing;python_version<'3.5'",
|
"typing;python_version<'3.5'",
|
||||||
"matrix-nio @ git+https://github.com/poljar/matrix-nio.git@master#egg=matrix-nio-0"
|
"matrix-nio @ git+https://github.com/poljar/matrix-nio.git@async#egg=matrix-nio-0"
|
||||||
],
|
],
|
||||||
|
entry_points={
|
||||||
|
"console_scripts": ["pantalaimon=pantalaimon.daemon:main"],
|
||||||
|
},
|
||||||
zip_safe=False
|
zip_safe=False
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue