mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
24 lines
502 B
Python
24 lines
502 B
Python
# ba_meta require api 9
|
|
import babase
|
|
ba_plugman = {
|
|
"shake_em_off": {
|
|
"description": "Shake as many stickies of you as possible",
|
|
"external_url": "",
|
|
"authors": [
|
|
{
|
|
"name": "brostosjoined",
|
|
"email": "",
|
|
"discord": "brostos"
|
|
}
|
|
],
|
|
"versions": {
|
|
"1.1.0": None
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
# ba_meta export babase.Plugin
|
|
class bybrostos(babase.Plugin):
|
|
def __init__():
|
|
pass
|