7 lines
121 B
Python
7 lines
121 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ProductsConfig(AppConfig):
|
|
name = 'products'
|
|
verbose_name = "Products"
|