feat: role & menu api

This commit is contained in:
zy7y
2022-09-12 23:22:18 +08:00
parent f27d2e9f7c
commit 8e154d492a
18 changed files with 701 additions and 270 deletions

View File

@@ -10,6 +10,6 @@ sh.setLevel(logging.DEBUG)
sh.setFormatter(fmt)
# will print debug sql
logger_db_client = logging.getLogger("mini-rbac")
logger_db_client.setLevel(logging.DEBUG)
logger_db_client.addHandler(sh)
logger = logging.getLogger("mini-rbac")
logger.setLevel(logging.DEBUG)
logger.addHandler(sh)