* `bthlabs-jsonrpc-aiohttp` v1.0.0 * `bthlabs-jsonrpc-core` v1.0.0 * `bthlabs-jsonrpc-django` v1.0.0
11 lines
319 B
Python
11 lines
319 B
Python
# -*- coding: utf-8 -*-
|
|
# django-jsonrpc-django | (c) 2022-present Tomek Wójcik | MIT License
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ThingsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'bthlabs_jsonrpc_django_example.things'
|
|
label = 'things'
|
|
verbose_name = 'Things'
|