You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
393 B
17 lines
393 B
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
# project: 3月
|
|
# author: liuyu
|
|
# date: 2020/3/6
|
|
|
|
|
|
from api.utils.auth import ApiTokenAuthentication
|
|
from api.views.uploads import AppAnalyseView, UploadView
|
|
|
|
|
|
class CliAppAnalyseView(AppAnalyseView):
|
|
authentication_classes = [ApiTokenAuthentication, ]
|
|
|
|
|
|
class CliUploadView(UploadView):
|
|
authentication_classes = [ApiTokenAuthentication, ]
|
|
|