I have a class on `main` branch, which implementat...
# getting-started
l
I have a class on
main
branch, which implementation is under development and should not be yet used by other teams. What is the most suitable annotation for this? I was thinking about
org.jetbrains.annotations.ApiStatus.Experimental
, but the doc says it's more suitable for API that might changed and not where the implementation is still "under construction".
Looks like the best method is to create my own custom
@MyExperimentalApi
annotation: https://kotlinlang.org/docs/opt-in-requirements.html#require-opt-in-for-api
👌 3
👍 1