blob: 4ef08a719eab1cb032e5c4b6f65dcb02ed1ae2af (
plain)
1
2
3
4
5
6
|
package org.opendc.common.annotations
@RequiresOptIn(message = "This is a registered API endpoint.")
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.CONSTRUCTOR)
public annotation class Endpoint(val method: String, val name : String)
|