7 lines
127 B
Python
7 lines
127 B
Python
"""App config for the markov module."""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class MarkovConfig(AppConfig):
|
|
name = 'markov'
|