mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 16:01:57 +00:00
12 lines
179 B
Python
12 lines
179 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
App config for users app
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class BranchesConfig(AppConfig):
|
|
"""Config for branches"""
|
|
name = 'branches'
|