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

stexceed.WarframeMarKT.1.0.1.source-code.Endpoint.kt Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
abstract class Endpoint internal constructor(private val parent: Endpoint?) : Requestable {
	protected open val pathName
		get() = this::class.simpleName!!.toLowerCase()

	override val url: String
		get() = parent!!.url + '/' + pathName
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy