update for network Layer

This commit is contained in:
Jungpyo Hong 2021-05-03 01:57:35 -05:00 committed by GitHub
parent 0f0a3d76a8
commit ad8e1c9bf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,8 @@
- [VIPER](#VIPER)
- [UIDesign](#UIDesign)
- [Helper](#Helper)
- [Email, Message, Call](#Email,-Message,-Call)
- [Network Layer](#Network-Layer)
- [API](#API)
- [JSON](#JSON)
- [Third Party Library](#Third-Party-Library)
@ -131,6 +133,10 @@ C > Controller class It will be there but the responsibility of view busi
## Helper
All files are resuable files and protocol oriented. **Just Copy and Paste inside your project and use it!!** 👍
### Email, Message, Call
You can check the file in the follow link
- [Email, Message, Call](https://github.com/jphong1111/Useful_Swift/blob/main/Helper/ConversationManager.swift)
@ -159,6 +165,10 @@ Then use it
}
```
### Network Layer
- [Network Layer](https://github.com/jphong1111/Useful_Swift/blob/main/Helper/Network-Layer)
## API
API(Application Programming Interface) is an interface that defines interactions between multiple software applications or mixed hardware-software intermediaries. It defines the kinds of calls or requests that can be made, how to make them, the data formats that should be used, the conventions to follow, etc.