14 lines
323 B
Python
14 lines
323 B
Python
import main
|
|
from yaml import dump
|
|
|
|
class List:
|
|
def __init__(self, register):
|
|
register("list", self.list)
|
|
|
|
def list(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
|
if authed:
|
|
info(dump(main.pool))
|
|
return
|
|
else:
|
|
incUsage(None)
|