Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 21 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import EngineApp from '../../Framework/engine.js' |
||
2 | import routes from '../routes/routes.js' |
||
3 | import article from '../components/article.js' |
||
4 | |||
5 | var isCreate=false |
||
6 | var eng=new EngineApp() |
||
7 | |||
8 | class routesDoc{ |
||
9 | routesCreated(){ |
||
10 | var bd = this.bind(routes) |
||
|
|||
11 | //sistemas De rotas |
||
12 | if(isCreate==false){ |
||
13 | eng.routesEngine.registerRoute("http://127.0.0.1:5500/LavineWiki/index.html#docs","this.teste") |
||
14 | } |
||
15 | isCreate=true |
||
16 | } |
||
17 | |||
18 | } |
||
19 | |||
20 | |||
21 | export default routesDoc |
||
22 |