13 lines
356 B
Python
13 lines
356 B
Python
# -*- coding: utf-8 -*-
|
|
# bthlabs-jsonrpc-django | (c) 2022-present Tomek Wójcik | MIT License
|
|
from __future__ import annotations
|
|
|
|
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'
|