13 lines
256 B
Kotlin
13 lines
256 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.annotations
|
|
|
|
@Target(AnnotationTarget.FUNCTION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class Subscribe
|
|
|