Memory functions exposed at the root bot level are too generic, like get, set, unset. They should be methods of memory and operate on the memory instance self.
That would also allow get to be repurposed for getRequest so get and post can be request shortcuts instead.
Memory functions exposed at the root bot level are too generic, like
get
,set
,unset
. They should be methods ofmemory
and operate on the memory instance self.That would also allow
get
to be repurposed forgetRequest
soget
andpost
can be request shortcuts instead.