This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
polynum-blackboard/polynum_blackboard/plugin.py

8 lines
184 B
Python

class Plugin(object):
def get_applications(self):
return ['polynum_blackboard']
def get_urls(self):
from . import urls
return ((0, urls.urlpatterns),)