Skip to content

Instantly share code, notes, and snippets.

View mmpataki's full-sized avatar

Madhusoodan Pataki mmpataki

View GitHub Profile
@mmpataki
mmpataki / Configuration.java
Last active February 3, 2023 14:04
Cli arg parser
@Retention(RetentionPolicy.RUNTIME)
public @interface Exposed {
String value();
}
@Retention(RetentionPolicy.RUNTIME)
public @interface Argument {
String[] keys();