1234567891011121314151617181920212223242526272829 |
- const basePart = '/simulation/resource/server';
- const selectSharedAlgorithmList = basePart + '/algorithm/selectSharedAlgorithmList';
- const selectAlgorithmList = basePart + '/algorithm/selectAlgorithmList';
- const deleteByid = basePart + '/algorithm/deleteByid';
- const isAlgorithmRunning = basePart + '/algorithm/isAlgorithmRunning';
- const shareAlgorithm = basePart + '/algorithm/shareAlgorithm';
- const addOrUpdate = basePart + '/algorithm/addOrUpdate';
- const selectDetailsById = basePart + '/algorithm/selectDetailsById';
- const getProgress = basePart + '/file/getProgress';
- const selectAlgoPlatformList = basePart + '/algorithm/selectAlgoPlatformList'
- export default {
- selectSharedAlgorithmList,
- selectAlgorithmList,
- deleteByid,
- isAlgorithmRunning,
- shareAlgorithm,
- addOrUpdate,
- selectDetailsById,
- getProgress,
- selectAlgoPlatformList
- }
|