mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
* Create a repository app for documents, first step * Step two (broken) * Complete the implementation of document repository and add invoices * Add support for invoices * Update submodules
7 lines
152 B
Python
7 lines
152 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RepositoryConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "repository"
|