Guest User

Untitled

a guest
Aug 5th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. c:/Users/bened/Downloads/archikart-appstore-webapp-main/archikart-appstore-webapp-main/
  2. ├─ .angular/
  3. │ └─]cache/ (ignored)
  4. ├─].idea/ (ignored)
  5. ├─ .vscode/
  6. │ ├─]extensions.json (ignored)
  7. │ ├─]launch.json (ignored)
  8. │ └─]tasks.json (ignored)
  9. ├─]node_modules/ (ignored)
  10. ├─ src/
  11. │ ├─ app/
  12. │ │ ├─ components/
  13. │ │ │ ├─ artifact/
  14. │ │ │ │ ├─ artifact.component.html
  15. │ │ │ │ ├─ artifact.component.scss
  16. │ │ │ │ ├─ artifact.component.spec.ts
  17. │ │ │ │ └─ artifact.component.ts
  18. │ │ │ ├─ editconfig/
  19. │ │ │ │ ├─ editconfig.component.css
  20. │ │ │ │ ├─ editconfig.component.html
  21. │ │ │ │ ├─ editconfig.component.spec.ts
  22. │ │ │ │ └─ editconfig.component.ts
  23. │ │ │ ├─ overview/
  24. │ │ │ │ ├─ overview.component.html
  25. │ │ │ │ ├─ overview.component.scss
  26. │ │ │ │ ├─ overview.component.spec.ts
  27. │ │ │ │ └─ overview.component.ts
  28. │ │ │ ├─ repository/
  29. │ │ │ │ ├─ repository.component.html
  30. │ │ │ │ ├─ repository.component.scss
  31. │ │ │ │ ├─ repository.component.spec.ts
  32. │ │ │ │ └─ repository.component.ts
  33. │ │ │ ├─ variables/
  34. │ │ │ │ ├─ variables.component.html
  35. │ │ │ │ ├─ variables.component.scss
  36. │ │ │ │ ├─ variables.component.spec.ts
  37. │ │ │ │ └─ variables.component.ts
  38. │ │ │ └─ version/
  39. │ │ │ ├─ version.activate.guard.ts
  40. │ │ │ ├─ version.component.html
  41. │ │ │ ├─ version.component.scss
  42. │ │ │ ├─ version.component.spec.ts
  43. │ │ │ └─ version.component.ts
  44. │ │ ├─ pipe/
  45. │ │ │ ├─ age.pipe.spec.ts
  46. │ │ │ ├─ age.pipe.ts
  47. │ │ │ ├─ size.pipe.spec.ts
  48. │ │ │ ├─ size.pipe.ts
  49. │ │ │ ├─ typeicon.pipe.spec.ts
  50. │ │ │ └─ typeicon.pipe.ts
  51. │ │ ├─ services/
  52. │ │ │ ├─ config.model.ts
  53. │ │ │ ├─ config.service.spec.ts
  54. │ │ │ ├─ config.service.ts
  55. │ │ │ ├─ nexus.model.ts
  56. │ │ │ ├─ nexus.service.spec.ts
  57. │ │ │ ├─ nexus.service.ts
  58. │ │ │ ├─ version.service.spec.ts
  59. │ │ │ └─ version.service.ts
  60. │ │ ├─ app.component.html
  61. │ │ ├─ app.component.scss
  62. │ │ ├─ app.component.spec.ts
  63. │ │ ├─ app.component.ts
  64. │ │ ├─ app.module.ts
  65. │ │ └─ app.routes.ts
  66. │ ├─ assets/
  67. │ │ ├─ icons/
  68. │ │ │ ├─ type/
  69. │ │ │ │ ├─ default.svg
  70. │ │ │ │ ├─ feat.svg
  71. │ │ │ │ └─ fix.svg
  72. │ │ │ ├─ ak3.png
  73. │ │ │ ├─ ak4.png
  74. │ │ │ ├─ albimport.png
  75. │ │ │ ├─ aow.png
  76. │ │ │ ├─ appstore.png
  77. │ │ │ ├─ dbcheck.png
  78. │ │ │ ├─ dbconvert.png
  79. │ │ │ ├─ favicon.ico
  80. │ │ │ ├─ mauftrag.png
  81. │ │ │ ├─ mbaum_alt.png
  82. │ │ │ ├─ mbaum.png
  83. │ │ │ ├─ mfriedhof.png
  84. │ │ │ ├─ mgebaeude.png
  85. │ │ │ ├─ mgruen.png
  86. │ │ │ ├─ minventar.png
  87. │ │ │ ├─ monkey.png
  88. │ │ │ ├─ mstrasse.png
  89. │ │ │ ├─ mtransfer.png
  90. │ │ │ ├─ nexus.png
  91. │ │ │ └─ plugin.png
  92. │ │ ├─ .gitkeep
  93. │ │ └─ config.json
  94. │ ├─ environments/
  95. │ │ ├─ environment.prod.ts
  96. │ │ └─ environment.ts
  97. │ ├─ favicon.ico
  98. │ ├─ index.html
  99. │ ├─ main.ts
  100. │ ├─ polyfills.ts
  101. │ ├─ styles.scss
  102. │ └─ test.ts
  103. ├─ .editorconfig
  104. ├─ .gitignore
  105. ├─ angular.json
  106. ├─ karma.conf.js
  107. ├─ package-lock.json
  108. ├─ package.json
  109. ├─ README.md
  110. ├─ tsconfig.app.json
  111. ├─ tsconfig.json
  112. └─ tsconfig.spec.json
  113.  
Advertisement
Add Comment
Please, Sign In to add comment