3
Ktor-Panel: Admin Interface Generation
(ktor-panel.readthedocs.io)
Kotlin is a statically typed programming language for the JVM, Android, JavaScript, and native.
Subreddit rules:
Resources:
It's about handling the CRUD operations using the respective data access objects (DAOs). Abstracts the database operations for entities (https://github.com/believemanasseh/ktor-panel/blob/main/lib/src/main/kotlin/xyz/daimones/ktor/panel/database/dao/ExposedDao.kt), hides details of the underlying database and unifies the API (https://github.com/believemanasseh/ktor-panel/blob/main/lib/src/main/kotlin/xyz/daimones/ktor/panel/database/Interfaces.kt).
Since an admin panel ultimately needs to manage database entities, it's a vital part of the development process.
I use ktor and exposed. Are you saying this module lets me do crud operations in a web admin portal?
Yes, basically. Heavily inspired by Flask-Admin (https://flask-admin.readthedocs.io/)