All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightningkite.lightningserver.db.ModelEndpoints.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.lightningserver.db

import com.lightningkite.lightningdb.HasId
import com.lightningkite.lightningserver.core.ServerPath
import com.lightningkite.lightningserver.core.ServerPathGroup

abstract class ModelEndpoints, ID : Comparable>(
    path: ServerPath,
    val info: ModelInfoWithDefault
) : ServerPathGroup(path) {
    open val rest: ModelRestEndpoints = ModelRestEndpoints(path("rest"), info)
    open val admin: ModelAdminEndpoints = ModelAdminEndpoints(path("rest"), info)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy