nk20/note/apps.py

12 lines
300 B
Python
Raw Normal View History

2019-07-16 07:05:30 +00:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2018-2019 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2019-07-08 12:30:58 +00:00
from django.apps import AppConfig
2019-07-16 07:05:30 +00:00
from django.utils.translation import gettext_lazy as _
2019-07-08 12:30:58 +00:00
class NoteConfig(AppConfig):
name = 'note'
2019-07-16 07:05:30 +00:00
verbose_name = _('note')