mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-05 03:40:13 +00:00
11 lines
193 B
Python
11 lines
193 B
Python
"""apps file for api package"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ApiConfig(AppConfig):
|
|
"""app config"""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "api"
|