mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 14:26:53 +00:00
13 lines
179 B
Python
13 lines
179 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
App config for metrics app
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
class MetricsConfig(AppConfig):
|
|
"""Config for metrics"""
|
|
name = 'metrics'
|