Interface alignment with ETSI for createVnf
[vfc/gvnfm/vnflcm.git] / lcm / lcm / v2 / urls.py
index 342c2a8..ea23519 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+
+from django.conf.urls import url
+
+from lcm.v2.views import CreateVnfAndQueryVnfs
+
+urlpatterns = [
+    url(r'^api/vnflcm/v2/vnf_instances$', CreateVnfAndQueryVnfs.as_view()),
+]