7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
import $http from '@/assets/js/http'
|
|
|
|
|
|
export function del(sourceCode) {
|
|
return $http.post('project/source_link/delete', {sourceCode: sourceCode});
|
|
}
|