2020-08-08 22:58:09 +00:00
|
|
|
package eu.kanade.tachiyomi.annotations
|
|
|
|
|
2020-08-10 15:44:39 +00:00
|
|
|
/**
|
|
|
|
* Annotation used to mark a Source (i.e. individual sources) or a SourceFactory (i.e. all sources
|
|
|
|
* within it) as NSFW. Used within the Tachiyomi app to prevent loading sources when parental
|
|
|
|
* controls are enabled.
|
|
|
|
*/
|
2020-08-08 22:58:09 +00:00
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
|
|
annotation class Nsfw
|