-
Notifications
You must be signed in to change notification settings - Fork 4
Code Structure
Andrea Velásquez edited this page Jun 27, 2019
·
4 revisions
yapay-spring-boot
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── project
│ │ │ └── yapayspringboot
│ │ │ ├── YapaySpringBootApplication.java
│ │ │ ├── controller
│ │ │ │ └── PaymentController.java
│ │ │ ├── dao
│ │ │ │ └── PaymentDao.java
│ │ │ ├── model
│ │ │ │ ├── Company.java
│ │ │ │ └── Payment.java
│ │ │ └── service
│ │ │ └── PaymentService.java
│ │ └── resources
│ │ └── application.properties
│ └── test
│ └── java
│ └── com
│ └── project
│ └── yapayspringboot
│ └── YapaySpringBootApplicationTests.java
|
├── yapay-spring-boot.iml
└── yapay.log
yapay_frontend
├── package.json
├── public
│ └── index.html
├── src
│ ├── App.vue
│ ├── assets
│ ├── components
│ ├── css
│ ├── images
│ └── main.js
└── vue.config.js
...
assets/
|-- app/
|-- |-- bootstrap.js
|-- |-- [application logic]
|-- internal/
|-- metadata/
|-- tns_modules/
|-- |-- application/
|-- |-- http/
|-- |-- [more modules]
...
libs/
|-- armeabi-v7a/
|-- |-- libNativeScript.so
|-- x86/
|-- |-- libNativeScript.so
|-- gson-2.2.4.jar
|-- nativescript.jar
|-- android-binding-generator.jar
|-- android-support-v4.jar
...