blob: 40829388872172129cad7081390d0e832cf50377 [file] [log] [blame]
Scott Baker8f32cc82016-08-08 10:34:53 -07001import os
2import pdb
3import sys
4import tempfile
5sys.path.append("/opt/tosca")
6from translator.toscalib.tosca_template import ToscaTemplate
7
8from services.hpc.models import HpcService
9
10from service import XOSService
11
12class XOSCdnService(XOSService):
13 provides = "tosca.nodes.CDNService"
14 xos_model = HpcService
15 copyin_props = ["view_url", "icon_url"]
16