code browser

This commit is contained in:
andrea.terzani
2024-10-18 07:03:24 +02:00
parent ab7b8e7955
commit 6ea3fc26e3
9 changed files with 516 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
import axios from 'axios';
export const ApplicationCodeService = {
getApplication(applicationName) {
return axios.get(`/source-viewer/getApplicationTreeNode?applicationName=${applicationName}`);
}
};