I am just starting with Google Endpoints and I would like to know if it provides a straightforward way to generate a simple CRUD interface for the models that I define, similar to what is available with Windows API. Would this functionality be included by default, or does it require separate development? Thank you.
Google Endpoints isn’t tailored for generating CRUD interfaces directly like some other platforms. It mainly offers a RESTful API service framework. For CRUD, you’d probably need to build the frontend part manually or use additional tools like Firebase that integrate well with Endpoints APIs. Hope this clarifies!