From 73d7aba09295d55933fdbba22c733cbcb6925049 Mon Sep 17 00:00:00 2001 From: kagorski Date: Tue, 19 Sep 2023 16:27:29 +0200 Subject: [PATCH] remove uselss file --- vmngclient/api/templates/__init__.py | 67 ---------------------------- 1 file changed, 67 deletions(-) delete mode 100644 vmngclient/api/templates/__init__.py diff --git a/vmngclient/api/templates/__init__.py b/vmngclient/api/templates/__init__.py deleted file mode 100644 index e489f2431..000000000 --- a/vmngclient/api/templates/__init__.py +++ /dev/null @@ -1,67 +0,0 @@ -"""Contains a list of feature templates. - -These feature template models are used to create and modify the templates -on the vManage server. - -In addition, they are used to convert CLI config into separate feature -templates in vManage. -""" - -# Device Template - -from vmngclient.api.templates.models.cisco_system import CiscoSystemModel - -# AAA Templates -from vmngclient.api.templates.payloads.aaa.aaa_model import AAAModel - -# Cisco VPN Templates -from vmngclient.api.templates.payloads.cisco_vpn.cisco_vpn_model import ( - DNS, - CiscoVPNModel, - GatewayType, - IPv4Route, - IPv6Route, - Mapping, - NextHop, -) - -# Cisco VPN Interface Ethernet Templates -from vmngclient.api.templates.payloads.cisco_vpn_interface_ethernet.cisco_vpn_interface_ethernet_model import ( - CiscoVpnInterfaceEthernetModel, - ColorType, - Encapsulation, - EncapType, - InterfaceName, - InterfaceType, - Tunnel, - TypeAddress, -) - -# CEdge Templates -from vmngclient.api.templates.payloads.tenant.tenant_model import TenantModel - -# Basic FeatureTemplate class - - -__all__ = [ - "DeviceTemplate", - "FeatureTemplate", - "TenantModel", - "AAAModel", - "CiscoVPNModel", - "DNS", - "Mapping", - "IPv4Route", - "IPv6Route", - "GatewayType", - "NextHop", - "CiscoSystemModel", - "CiscoVpnInterfaceEthernetModel", - "InterfaceType", - "TypeAddress", - "ColorType", - "Tunnel", - "Encapsulation", - "EncapType", - "InterfaceName", -]