summaryrefslogtreecommitdiffstats
path: root/awxkit/awxkit/api/pages/dashboard.py
blob: 9524497af01e5d6028956c0ba1d0f46a079cb267 (plain)
1
2
3
4
5
6
7
8
9
10
from awxkit.api.resources import resources
from . import base
from . import page


class Dashboard(base.Base):
    pass


page.register_page(resources.dashboard, Dashboard)