Projet

Général

Profil

Télécharger (295 octets) Statistiques
| Branche: | Tag: | Révision:

root / facturier / __init__.py @ 14a03ac6

1
__version__ = '1.2'
2

    
3
class Plugin(object):
4
    def get_before_urls(self):
5
        from . import urls
6
        return urls.urlpatterns
7

    
8
    def get_apps(self):
9
        return [__name__]
10

    
11
    def get_admin_modules(self):
12
        from . import dashboard
13
        return dashboard.get_admin_modules()
(1-1/6)