Andrea Campanella | 45536f7 | 2017-02-23 15:20:06 +0100 | [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 | VEE_KIND = "vee" | ||||
8 | |||||
9 | class VEEService(Service): | ||||
10 | KIND = VEE_KIND | ||||
11 | |||||
12 | class Meta: | ||||
13 | app_label = "vee" | ||||
14 | verbose_name = "VEE Service" | ||||
15 | |||||
16 | |||||
17 | autoconfig = models.BooleanField(default=True, help_text="Autoconfigure the vEE") |