Skip to content

Commit

Permalink
thunderpay-lib: config-magic[ConfigReplacements]
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Dec 21, 2024
1 parent ad860c5 commit 6874c2f
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file ConfigReplacements.java
* @author Krisna Pranav
* @brief Config Replacements
* @version 1.0
* @date 2024-11-25
*
* @copyright Copyright (c) 2024 ThunderPayment Developers, Krisna Pranav
*
*/

package org.thunderpay.config;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ConfigReplacements {
String DEFAULT_VALUE = "__%%%noValue%%%__";

String value() default DEFAULT_VALUE;
}

0 comments on commit 6874c2f

Please sign in to comment.