blob: bd374166b4142f524c12f625413222e90cf00007 [file] [log] [blame]
Scott Baker46831592016-06-20 17:32:04 -07001from django.db import models
2from core.models import Service
3import traceback
4from xos.exceptions import *
5from xos.config import Config
6
7FABRIC_KIND = "fabric"
8
9class 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")