package com.zwitserloot.cmdreader; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Documented /* loaded from: com.discord-118107.apk:com/zwitserloot/cmdreader/Shorthand.SCL.lombok */ public @interface Shorthand { String[] value() default {}; }