10 lines
246 B
Python
10 lines
246 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from . import views as api_views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'asblock/free-as/$', api_views.asblockFreeAS, name='asblock-free-as'),
|
||
|
url(r'asblock/free-subnet/$', api_views.freeSubnet, name='inetnum-free-subnet'),
|
||
|
|
||
|
]
|