8 lines
143 B
Python
8 lines
143 B
Python
from django.core.management import BaseCommand
|
|
|
|
from BaseLib.BaseEntity import BaseEntity
|
|
|
|
|
|
class BaseDaemon(BaseCommand, BaseEntity):
|
|
...
|