uccser/cs-field-guide

View on GitHub
csfieldguide/chapters/apps.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Application configuration for the chapters application."""

from django.apps import AppConfig


class ChaptersConfig(AppConfig):
    """Configuration object for the chapters application."""

    name = "chapters"