mirror of
https://github.com/osmarks/autobotrobot
synced 2025-02-02 10:19:10 +00:00
better userdata docs
This commit is contained in:
parent
d5a9e8d525
commit
54743a9971
@ -1,7 +1,8 @@
|
|||||||
import util
|
import util
|
||||||
|
|
||||||
def setup(bot):
|
def setup(bot):
|
||||||
@bot.group(name="userdata", aliases=["data"], brief="Store guild/user-localized data AND retrieve it later!")
|
@bot.group(name="userdata", aliases=["data"], help="""Store per-user data AND retrieve it later! Note that, due to the nature of storing things, it is necessary to set userdata before getting it.
|
||||||
|
Data can either be localized to a guild (guild scope) or shared between guilds (global scope), but is always tied to a user.""")
|
||||||
async def userdata(ctx): pass
|
async def userdata(ctx): pass
|
||||||
|
|
||||||
async def get_userdata(db, user, guild, key):
|
async def get_userdata(db, user, guild, key):
|
||||||
|
Loading…
Reference in New Issue
Block a user