mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 20:06:44 +00:00
12 lines
195 B
Python
12 lines
195 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
"""
|
||
|
|
App config for config app
|
||
|
|
"""
|
||
|
|
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class MethodRoutingConfig(AppConfig):
|
||
|
|
"""Config for methodrouting"""
|
||
|
|
name = 'methodrouting'
|