Scott Baker | 4683159 | 2016-06-20 17:32:04 -0700 | [diff] [blame] | 1 | from django.db import models |
2 | from core.models import Service | ||||
3 | import traceback | ||||
4 | from xos.exceptions import * | ||||
5 | from xos.config import Config | ||||
6 | |||||
7 | FABRIC_KIND = "fabric" | ||||
8 | |||||
9 | class FabricService(Service): | ||||
10 | KIND = FABRIC_KIND | ||||
11 | |||||
12 | class Meta: | ||||
13 | app_label = "fabric" | ||||
14 | verbose_name = "Fabric Service" | ||||
15 | |||||
16 | autoconfig = models.BooleanField(default=True, help_text="Autoconfigure the fabric") |