mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-20 03:36:16 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SchedulerConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'scheduler'
|
|
|
|
def ready(self):
|
|
pass |