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


class Dashboard(base.Base):

    pass


page.register_page(resources.dashboard, Dashboard)