tfse-admin-api-v0.2/Board/board_obj.py

13 lines
279 B
Python
Raw Normal View History

2022-02-17 16:58:39 +08:00
from Board.board_impl import get_dashboard_data_impl, static_dashboard_data_impl
2022-02-16 17:03:12 +08:00
class DashBoard:
2022-02-18 14:23:50 +08:00
@staticmethod
def get_dashboard_data():
return get_dashboard_data_impl()
2022-02-16 17:03:12 +08:00
2022-02-18 14:23:50 +08:00
@staticmethod
def static_dashboard_data():
static_dashboard_data_impl()