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.
facturier/facturier/__init__.py

14 lines
297 B
Python

__version__ = '1.0.1'
class Plugin(object):
def get_before_urls(self):
from . import urls
return urls.urlpatterns
def get_apps(self):
return [__name__]
def get_admin_modules(self):
from . import dashboard
return dashboard.get_admin_modules()