Source code for evennia.web.api.root

"""
Set a more useful description on the Api root.

"""

from rest_framework import routers


[docs] class EvenniaAPIRoot(routers.APIRootView): """ Root of the Evennia API tree. """ pass
[docs] class APIRootRouter(routers.DefaultRouter): APIRootView = EvenniaAPIRoot