Skip to content

Commit

Permalink
Change from crlf -> lf
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelillo15 committed Jun 29, 2024
1 parent b506d0d commit 0de1b94
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.nookure.core.database.annotation;

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;

@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@BindingAnnotation
public @interface EbeanDatabaseName {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.nookure.core.database.annotation;

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;

@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@BindingAnnotation
public @interface EntityClassMappings {
}

0 comments on commit 0de1b94

Please sign in to comment.