simple framework with google script
url API : https://script.google.com/macros/s/AKfycbzC89SW5iNKCYmhOX0MS_Umw9ZNFW-tPEnYvIy_ZTwt1QeQAvj8/exec
* route : books/put (insert/update)
* id: [alphanumeric|min_length[5]|max_length[20]|required]
* title: [alphanumeric|min_length[3]|max_length[50]|required]
* author : [alphanumeric|min_length[3]|max_length[50]|required]
* route : books/delete (soft delete)
* id : [alphanumeric]
* route : books (get books by id)
* id : [alphanumeric]
* route : books (get all some books)
* offset : [int]
* limit : [int]
This application using google sheet as database
- Authentication
- telegram bot
- pagination
- enganced validation with another option like strong pasword, unique key, email etc.