add wip export schema
This commit is contained in:
parent
9efbb6bb1e
commit
e586a18846
1 changed files with 14 additions and 1 deletions
|
@ -54,7 +54,20 @@ You may want to `{ctx.clean_prefix}nomen export` first"""
|
|||
"""
|
||||
Imports a JSON of all of your user data
|
||||
"""
|
||||
pass
|
||||
schema = {
|
||||
"disabled": bool,
|
||||
"keywords": {
|
||||
"<guild_id>": [
|
||||
{"keyword": str, "regex": bool, "count": int},
|
||||
],
|
||||
},
|
||||
"ignores": {
|
||||
"<guild_id>": [int],
|
||||
},
|
||||
"blocks": [
|
||||
int # User ID
|
||||
],
|
||||
}
|
||||
|
||||
@nomen.command()
|
||||
@guild_only()
|
||||
|
|
Loading…
Reference in a new issue