mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-20 22:42:16 +01:00
15 lines
379 B
Java
15 lines
379 B
Java
package sonia.scm.web;
|
|
|
|
import com.google.inject.BindingAnnotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@BindingAnnotation
|
|
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER })
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface Git {
|
|
}
|