mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-13 18:45:40 +00:00
9 lines
167 B
Python
9 lines
167 B
Python
"""Django app for the BuildOrder module"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class BuildConfig(AppConfig):
|
|
"""BuildOrder app config class"""
|
|
name = 'build'
|