mirror of https://github.com/cowrie/cowrie.git
5 lines
200 B
Plaintext
5 lines
200 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# This is run by packaging tools to update `dropin.cache` to keep track of Twisted's plugin cache
|
||
|
from twisted.plugin import IPlugin, getPlugins
|
||
|
print(list(getPlugins(IPlugin)))
|